Use unsigned where appropriate.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@22862 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2008-04-07 18:49:55 +00:00
parent a9f2ca581f
commit 0f4b203dd2

View File

@@ -44,7 +44,7 @@ _krb5_crc_init_table(void)
{ {
static int flag = 0; static int flag = 0;
unsigned long crc, poly; unsigned long crc, poly;
int i, j; unsigned int i, j;
if(flag) return; if(flag) return;
poly = CRC_GEN; poly = CRC_GEN;