From: Neal Norwitz Date: Thu, 27 Mar 2008 05:03:11 +0000 (+0000) Subject: Fix compiler warnings X-Git-Tag: v2.6a2~80 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5802bb231945c04e34acef39b9a937bbe153a8d6;p=python Fix compiler warnings --- diff --git a/Modules/_ssl.c b/Modules/_ssl.c index 48681042e0..3f167b32ca 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -1431,7 +1431,7 @@ static void _ssl_thread_locking_function (int mode, int n, const char *file, int */ if ((_ssl_locks == NULL) || - (n < 0) || (n >= _ssl_locks_count)) + (n < 0) || ((unsigned)n >= _ssl_locks_count)) return; if (mode & CRYPTO_LOCK) { @@ -1443,7 +1443,7 @@ static void _ssl_thread_locking_function (int mode, int n, const char *file, int static int _setup_ssl_threads(void) { - int i; + unsigned int i; if (_ssl_locks == NULL) { _ssl_locks_count = CRYPTO_num_locks();