From 83d2542e66f758151a08510f2c572c6bc60fd2c2 Mon Sep 17 00:00:00 2001 From: Theodore Tso Date: Tue, 23 Mar 1999 22:12:56 +0000 Subject: [PATCH] Don't use cc_uint4 since the Windows include file apparently doesn't include it. unsigned int will work just fine here for now. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11302 dc483132-0cff-0310-8789-dd5450dbe970 --- src/lib/krb5/ccache/ccapi/stdcc_util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/krb5/ccache/ccapi/stdcc_util.c b/src/lib/krb5/ccache/ccapi/stdcc_util.c index 549ad6a54..7acb60380 100644 --- a/src/lib/krb5/ccache/ccapi/stdcc_util.c +++ b/src/lib/krb5/ccache/ccapi/stdcc_util.c @@ -454,7 +454,7 @@ static void deep_free_cc_data (cc_data data) { static void deep_free_cc_data_array (cc_data** data) { - cc_uint32 index; + unsigned int index; if (data == NULL) return; @@ -507,4 +507,4 @@ cc_int32 krb5_free_cc_cred_union (cred_union** creds) { } return CC_NOERROR; -} \ No newline at end of file +} -- 2.26.2