diff options
| author | John Kohl <jtkohl@mit.edu> | 1991-02-12 14:11:42 +0000 |
|---|---|---|
| committer | John Kohl <jtkohl@mit.edu> | 1991-02-12 14:11:42 +0000 |
| commit | 55e4184b711671ace3f54aea3939eb3ad3fa5cb3 (patch) | |
| tree | 6ed8013cd82c908509d26563ce03aad8c90b39f3 /src | |
| parent | 500ed404b42717345defa974eab170a677872ab9 (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.c | 4 |
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); } |
