From: Nils Larsch Date: Sat, 11 Mar 2006 11:54:27 +0000 (+0000) Subject: fix signed vs. unsigned warning X-Git-Tag: OpenSSL_0_9_8k^2~1521 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=cd346d3e22c2821333e28b3ab33e5960efdd0947;p=oweals%2Fopenssl.git fix signed vs. unsigned warning --- diff --git a/crypto/whrlpool/wp_dgst.c b/crypto/whrlpool/wp_dgst.c index 7aa4bebe2e..2919914059 100644 --- a/crypto/whrlpool/wp_dgst.c +++ b/crypto/whrlpool/wp_dgst.c @@ -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;