commit | f920c5b590e3317fa740ca62fd87dbcd60978a16 | [log] [tgz] |
---|---|---|
author | Geoff Thorpe <geoff@openssl.org> | Tue Jul 26 04:25:05 2005 +0000 |
committer | Geoff Thorpe <geoff@openssl.org> | Tue Jul 26 04:25:05 2005 +0000 |
tree | 6d98101ae4c8ef85201ad9c0c6d67e015bae2208 | |
parent | 05fc7018f8d3e33a6aad5073fb09cb6224d128c3 [diff] [blame] |
Fix signed/unsigned warnings.
diff --git a/engines/e_cswift.c b/engines/e_cswift.c index 2017e48..d5f1d4e 100644 --- a/engines/e_cswift.c +++ b/engines/e_cswift.c
@@ -1062,7 +1062,7 @@ /* limitation of cswift with values not a multiple of 32 */ /************************************************************************/ - while(num >= sizeof(buf32)) + while(num >= (int)sizeof(buf32)) { largenum.value = buf; largenum.nbytes = sizeof(buf32);