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:
1fc1bd3
)
gcc figures that the format specifier %2x means unsigned int, so let's
author
Richard Levitte
<levitte@openssl.org>
Wed, 20 Feb 2002 13:50:36 +0000
(13:50 +0000)
committer
Richard Levitte
<levitte@openssl.org>
Wed, 20 Feb 2002 13:50:36 +0000
(13:50 +0000)
make n unsigned.
crypto/evp/evp_test.c
patch
|
blob
|
history
diff --git
a/crypto/evp/evp_test.c
b/crypto/evp/evp_test.c
index bf0fc3692be8f07a41e9e8b95e46806ca2e6497f..3607fe777677020f4663d5bb788a2b00e2885e17 100644
(file)
--- a/
crypto/evp/evp_test.c
+++ b/
crypto/evp/evp_test.c
@@
-73,7
+73,7
@@
static int convert(unsigned char *s)
for(d=s ; *s ; s+=2,++d)
{
- int n;
+
unsigned
int n;
if(!s[1])
{