From 9aca5b22597783eb1aa624c05a63d4536792e597 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Sat, 6 Sep 2003 16:57:16 +0000 Subject: [PATCH] Fix signed/unsigned warning. --- crypto/aes/aes_cfb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/aes/aes_cfb.c b/crypto/aes/aes_cfb.c index 31d7e2dd77..2e0c41ec2b 100644 --- a/crypto/aes/aes_cfb.c +++ b/crypto/aes/aes_cfb.c @@ -162,7 +162,7 @@ void AES_cfbr_encrypt_block(const unsigned char *in,unsigned char *out, const int nbits,const AES_KEY *key, unsigned char *ivec,const int enc) { - unsigned int n; + int n; unsigned char ovec[AES_BLOCK_SIZE*2]; assert(in && out && key && ivec); -- 2.25.1