summaryrefslogtreecommitdiffstats
path: root/crypto/bio/b_dump.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-06-10 18:03:14 +0000
committerBodo Möller <bodo@openssl.org>1999-06-10 18:03:14 +0000
commit247cf8d2791c1fc6a2bae4e9b455b2b0874bf74a (patch)
treec5ed7afaa463b0ea97220e2252802e385468ae7b /crypto/bio/b_dump.c
parentb7d135b353953bf40a58b49d145df5376a8af209 (diff)
Avoid warning.
Diffstat (limited to 'crypto/bio/b_dump.c')
-rw-r--r--crypto/bio/b_dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bio/b_dump.c b/crypto/bio/b_dump.c
index a7cd828978..b1562cf02b 100644
--- a/crypto/bio/b_dump.c
+++ b/crypto/bio/b_dump.c
@@ -71,7 +71,7 @@ int BIO_dump(BIO *bio, const char *s, int len)
{
int ret=0;
char buf[160+1],tmp[20];
- int i,j,rows,trunc;
+ unsigned int i,j,rows,trunc;
unsigned char ch;
trunc=0;