From: Georg Richter Date: Thu, 25 Sep 2003 15:38:35 +0000 (+0000) Subject: changed ulong to long to avoid compiler warnings (comparison between signed and unsigned) X-Git-Tag: RELEASE_1_3b2~62 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=664078c100f1557bff5fb397bc33eacef01d08af;p=php changed ulong to long to avoid compiler warnings (comparison between signed and unsigned) --- diff --git a/Zend/zend_hash.h b/Zend/zend_hash.h index 7cbe02605e..37a6d4e7d7 100644 --- a/Zend/zend_hash.h +++ b/Zend/zend_hash.h @@ -295,7 +295,7 @@ END_EXTERN_C() } \ if ((*tmp>='0' && *tmp<='9')) do { /* possibly a numeric index */ \ char *end=key+length-1; \ - ulong idx; \ + long idx; \ \ if (*tmp++=='0' && length>2) { /* don't accept numbers with leading zeros */ \ break; \