summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohn Kohl <jtkohl@mit.edu>1991-02-12 14:11:42 +0000
committerJohn Kohl <jtkohl@mit.edu>1991-02-12 14:11:42 +0000
commit55e4184b711671ace3f54aea3939eb3ad3fa5cb3 (patch)
tree6ed8013cd82c908509d26563ce03aad8c90b39f3 /src
parent500ed404b42717345defa974eab170a677872ab9 (diff)
fix argument type
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1675 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/lib/krb5/ccache/file/fcc_write.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/krb5/ccache/file/fcc_write.c b/src/lib/krb5/ccache/file/fcc_write.c
index 9256855b7..2b7dabcb6 100644
--- a/src/lib/krb5/ccache/file/fcc_write.c
+++ b/src/lib/krb5/ccache/file/fcc_write.c
@@ -2,7 +2,7 @@
* $Source$
* $Author$
*
- * Copyright 1990 by the Massachusetts Institute of Technology.
+ * Copyright 1990,1991 by the Massachusetts Institute of Technology.
*
* For copying and distribution information, please see the file
* <krb5/copyright.h>.
@@ -253,5 +253,5 @@ krb5_fcc_store_authdatum (id, a)
CHECK(ret);
ret = krb5_fcc_store_int32(id, &a->length);
CHECK(ret);
- return krb5_fcc_write(id, a->contents, a->length);
+ return krb5_fcc_write(id, (krb5_pointer) a->contents, a->length);
}