Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2003-09-06 20:57:16 +0400
committerDr. Stephen Henson <steve@openssl.org>2003-09-06 20:57:16 +0400
commit9aca5b22597783eb1aa624c05a63d4536792e597 (patch)
tree99f6bc73b7115b84e6589c0f192c1350d4ae37d9 /crypto
parentb8b47f67d0f4a4ff2d1c81cd4a39ad43d57e9c3b (diff)
Fix signed/unsigned warning.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/aes/aes_cfb.c2
1 files changed, 1 insertions, 1 deletions
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);