fix signed vs. unsigned warning

This commit is contained in:
Nils Larsch 2006-03-11 11:54:27 +00:00
parent 561d93aa00
commit cd346d3e22

View 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;