From: Zeev Suraski Date: Sat, 21 Jul 2001 14:18:53 +0000 (+0000) Subject: Fix compile warning X-Git-Tag: PRE_TSRM_MERGE_PATCH~45 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=660a09c6da977f2a42330f9a42c4215f5a054364;p=php Fix compile warning --- diff --git a/Zend/zend_hash.c b/Zend/zend_hash.c index 47632b9a2e..55d6883e0f 100644 --- a/Zend/zend_hash.c +++ b/Zend/zend_hash.c @@ -165,7 +165,7 @@ ZEND_API int zend_hash_init(HashTable *ht, uint nSize, hash_func_t pHashFunction SET_INCONSISTENT(HT_OK); - while ((1 << i) < nSize) { + while ((1U << i) < nSize) { i++; }