From: Theodore Tso Date: Tue, 23 Mar 1999 22:12:56 +0000 (+0000) Subject: Don't use cc_uint4 since the Windows include file apparently doesn't X-Git-Tag: krb5-1.1-beta1~266 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=83d2542e66f758151a08510f2c572c6bc60fd2c2;p=krb5.git 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 --- 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 +}