aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/whrlpool
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2006-03-11 11:54:27 +0000
committerNils Larsch <nils@openssl.org>2006-03-11 11:54:27 +0000
commitcd346d3e22c2821333e28b3ab33e5960efdd0947 (patch)
tree50fb350919a00a3e934afd71667c018b250004b6 /crypto/whrlpool
parent561d93aa00e850f64b6e136c9baeef1f64cb0459 (diff)
downloadopenssl-cd346d3e22c2821333e28b3ab33e5960efdd0947.tar.gz
fix signed vs. unsigned warning
Diffstat (limited to 'crypto/whrlpool')
-rw-r--r--crypto/whrlpool/wp_dgst.c3
1 files changed, 1 insertions, 2 deletions
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;