diff options
author | Georg Richter <georg@php.net> | 2003-09-25 15:38:35 +0000 |
---|---|---|
committer | Georg Richter <georg@php.net> | 2003-09-25 15:38:35 +0000 |
commit | 664078c100f1557bff5fb397bc33eacef01d08af (patch) | |
tree | 0a172d28baf9af982fce222d296167e68857da13 /Zend/zend_hash.h | |
parent | 72de75c99ac9d671ec3e6d9d495afe95d9212d29 (diff) | |
download | php-git-664078c100f1557bff5fb397bc33eacef01d08af.tar.gz |
changed ulong to long to avoid compiler warnings (comparison between signed and unsigned)
Diffstat (limited to 'Zend/zend_hash.h')
-rw-r--r-- | Zend/zend_hash.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; \ |