summaryrefslogtreecommitdiff
path: root/Zend/zend_API.c
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2005-11-17 21:27:59 +0000
committerSVN Migration <svn@php.net>2005-11-17 21:27:59 +0000
commit5f128c84afa6530c74f303109156c88912ce2de9 (patch)
tree033e5859e61f1e5a46699569511420771ca5be46 /Zend/zend_API.c
parent4ba37d04d472be40d3893128101fa221013bc975 (diff)
downloadphp-git-php-5.1.0RC6.tar.gz
This commit was manufactured by cvs2svn to create tag 'php_5_1_0RC6'.php-5.1.0RC6
Diffstat (limited to 'Zend/zend_API.c')
-rw-r--r--Zend/zend_API.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_API.c b/Zend/zend_API.c
index af70c3dd48..5aa684b4c8 100644
--- a/Zend/zend_API.c
+++ b/Zend/zend_API.c
@@ -296,7 +296,7 @@ static char *zend_parse_arg_impl(zval **arg, va_list *va, char **spec TSRMLS_DC)
double d;
int type;
- if ((type = is_numeric_string(Z_STRVAL_PP(arg), Z_STRLEN_PP(arg), p, &d, -1)) == 0) {
+ if ((type = is_numeric_string(Z_STRVAL_PP(arg), Z_STRLEN_PP(arg), p, &d, 0)) == 0) {
return "long";
} else if (type == IS_DOUBLE) {
*p = (long) d;
@@ -330,7 +330,7 @@ static char *zend_parse_arg_impl(zval **arg, va_list *va, char **spec TSRMLS_DC)
long l;
int type;
- if ((type = is_numeric_string(Z_STRVAL_PP(arg), Z_STRLEN_PP(arg), &l, p, -1)) == 0) {
+ if ((type = is_numeric_string(Z_STRVAL_PP(arg), Z_STRLEN_PP(arg), &l, p, 0)) == 0) {
return "double";
} else if (type == IS_LONG) {
*p = (double) l;