aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/bf
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-06-10 16:29:32 +0000
committerBodo Möller <bodo@openssl.org>1999-06-10 16:29:32 +0000
commitd58d092bc9f0a541ce5f0b265ee819f7ab086560 (patch)
tree497575b6ed095b6672e9f17ffb3f20223d3b6b36 /crypto/bf
parent9d9b559ef03e481d2feec5a3a9a28f4a41f8189a (diff)
downloadopenssl-d58d092bc9f0a541ce5f0b265ee819f7ab086560.tar.gz
Avoid warnings.
Diffstat (limited to 'crypto/bf')
-rw-r--r--crypto/bf/bftest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bf/bftest.c b/crypto/bf/bftest.c
index 5ff14b1512..6ecd2609a9 100644
--- a/crypto/bf/bftest.c
+++ b/crypto/bf/bftest.c
@@ -308,7 +308,7 @@ static int print_test_data(void)
printf("c=");
for (j=0; j<8; j++)
printf("%02X",key_out[i][j]);
- printf(" k[%2d]=",i+1);
+ printf(" k[%2u]=",i+1);
for (j=0; j<i+1; j++)
printf("%02X",key_test[j]);
printf("\n");