summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2005-11-17 19:20:14 +0000
committerAntony Dovgal <tony2001@php.net>2005-11-17 19:20:14 +0000
commit510f40c3bcc04149f63b9b333a894fa70523b6d6 (patch)
tree8251c01629500d8d25c725e59ba20dcdbb677273
parent47414c4204a1b54d61e7865d1d28c8173e83a841 (diff)
downloadphp-git-510f40c3bcc04149f63b9b333a894fa70523b6d6.tar.gz
make GCC happy and suppress the warning
-rw-r--r--Zend/zend_operators.h1
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)