diff options
author | Antony Dovgal <tony2001@php.net> | 2005-11-17 19:20:14 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2005-11-17 19:20:14 +0000 |
commit | 510f40c3bcc04149f63b9b333a894fa70523b6d6 (patch) | |
tree | 8251c01629500d8d25c725e59ba20dcdbb677273 | |
parent | 47414c4204a1b54d61e7865d1d28c8173e83a841 (diff) | |
download | php-git-510f40c3bcc04149f63b9b333a894fa70523b6d6.tar.gz |
make GCC happy and suppress the warning
-rw-r--r-- | Zend/zend_operators.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_operators.h b/Zend/zend_operators.h index 29d12a1e1e..c5700a0040 100644 --- a/Zend/zend_operators.h +++ b/Zend/zend_operators.h @@ -134,6 +134,7 @@ static inline zend_uchar is_numeric_string(char *str, int length, long *lval, do *lval = local_lval; return IS_LONG; } + return 0; } static inline zend_uchar is_numeric_unicode(UChar *str, int32_t length, long *lval, double *dval, zend_bool allow_errors) |