fix argument type
authorJohn Kohl <jtkohl@mit.edu>
Tue, 12 Feb 1991 14:11:42 +0000 (14:11 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Tue, 12 Feb 1991 14:11:42 +0000 (14:11 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1675 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/ccache/file/fcc_write.c

index 9256855b723ad9e4ad2ab5c2200f4cabe9566379..2b7dabcb680c33e61d54f9f2487292d9ff4376ac 100644 (file)
@@ -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);
 }