projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
561d93a
)
fix signed vs. unsigned warning
author
Nils Larsch
<nils@openssl.org>
Sat, 11 Mar 2006 11:54:27 +0000
(11:54 +0000)
committer
Nils Larsch
<nils@openssl.org>
Sat, 11 Mar 2006 11:54:27 +0000
(11:54 +0000)
crypto/whrlpool/wp_dgst.c
patch
|
blob
|
history
diff --git
a/crypto/whrlpool/wp_dgst.c
b/crypto/whrlpool/wp_dgst.c
index 7aa4bebe2e7fad6307df804817ed77b202c47768..291991405935bca4a380f8bb609b673290cd5fe9 100644
(file)
--- 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;