fix signed vs. unsigned warning
authorNils Larsch <nils@openssl.org>
Sat, 11 Mar 2006 11:54:27 +0000 (11:54 +0000)
committerNils Larsch <nils@openssl.org>
Sat, 11 Mar 2006 11:54:27 +0000 (11:54 +0000)
crypto/whrlpool/wp_dgst.c

index 7aa4bebe2e7fad6307df804817ed77b202c47768..291991405935bca4a380f8bb609b673290cd5fe9 100644 (file)
@@ -216,8 +216,7 @@ int WHIRLPOOL_Final (unsigned char *md,WHIRLPOOL_CTX *c)
        {
        unsigned int    bitoff  = c->bitoff,
                        byteoff = bitoff/8;
-       int             i,j;
-       size_t          v;
+       size_t          i,j,v;
        unsigned char  *p;
 
        bitoff %= 8;