From 6c43032121b3403061119def69c5684ab955e7e2 Mon Sep 17 00:00:00 2001 From: Geoff Thorpe Date: Tue, 10 Feb 2004 18:46:10 +0000 Subject: minor signed/unsigned warning fixes --- crypto/des/cfb_enc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crypto') diff --git a/crypto/des/cfb_enc.c b/crypto/des/cfb_enc.c index 225410efbe..0013556c78 100644 --- a/crypto/des/cfb_enc.c +++ b/crypto/des/cfb_enc.c @@ -84,7 +84,7 @@ void DES_cfb_encrypt(const unsigned char *in, unsigned char *out, int numbits, c2l(iv,v1); if (enc) { - while (l >= n) + while (l >= (unsigned long)n) { l-=n; ti[0]=v0; @@ -126,7 +126,7 @@ void DES_cfb_encrypt(const unsigned char *in, unsigned char *out, int numbits, } else { - while (l >= n) + while (l >= (unsigned long)n) { l-=n; ti[0]=v0; -- cgit v1.2.1