diff options
Diffstat (limited to 'ext/standard/string.c')
-rw-r--r-- | ext/standard/string.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/standard/string.c b/ext/standard/string.c index e21cf53f06..341e747f6c 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -202,7 +202,8 @@ PHP_FUNCTION(bin2hex) static void php_spn_common_handler(INTERNAL_FUNCTION_PARAMETERS, int behavior) { char *s11, *s22; - int len1, len2, start, len; + int len1, len2; + long start, len; start = 0; len = 0; @@ -1228,7 +1229,7 @@ PHP_FUNCTION(pathinfo) zval *tmp; char *path, *ret = NULL; int path_len; - int opt = PHP_PATHINFO_ALL; + long opt = PHP_PATHINFO_ALL; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", &path, &path_len, &opt) == FAILURE) { return; |