From 664078c100f1557bff5fb397bc33eacef01d08af Mon Sep 17 00:00:00 2001 From: Georg Richter Date: Thu, 25 Sep 2003 15:38:35 +0000 Subject: [PATCH] changed ulong to long to avoid compiler warnings (comparison between signed and unsigned) --- Zend/zend_hash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; \ -- 2.50.1