From 55e4184b711671ace3f54aea3939eb3ad3fa5cb3 Mon Sep 17 00:00:00 2001 From: John Kohl Date: Tue, 12 Feb 1991 14:11:42 +0000 Subject: [PATCH] fix argument type git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1675 dc483132-0cff-0310-8789-dd5450dbe970 --- src/lib/krb5/ccache/file/fcc_write.c | 4 ++-- 1 file 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 * . @@ -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); } -- 2.26.2