From 0f4b203dd239a74601af66eb86cb68ea973af200 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Mon, 7 Apr 2008 18:49:55 +0000 Subject: [PATCH] Use unsigned where appropriate. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@22862 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/krb5/crc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/krb5/crc.c b/lib/krb5/crc.c index bf9c95a20..cdb40b811 100644 --- a/lib/krb5/crc.c +++ b/lib/krb5/crc.c @@ -44,7 +44,7 @@ _krb5_crc_init_table(void) { static int flag = 0; unsigned long crc, poly; - int i, j; + unsigned int i, j; if(flag) return; poly = CRC_GEN;