diff options
author | Zeev Suraski <zeev@php.net> | 2001-08-21 12:57:53 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-08-21 12:57:53 +0000 |
commit | e140b35b0420d7ea1e2d80b78c5161d166067c06 (patch) | |
tree | 46a5a443fa8184abb4d8e3c04d58883b13146eb4 /ext/standard/string.c | |
parent | 4757104e45a9b981b5c96c65638395b382e9f52b (diff) | |
download | php-git-e140b35b0420d7ea1e2d80b78c5161d166067c06.tar.gz |
API update
Diffstat (limited to 'ext/standard/string.c')
-rw-r--r-- | ext/standard/string.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/standard/string.c b/ext/standard/string.c index 45e3d4451c..9ef011d51e 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -2713,7 +2713,8 @@ PHP_FUNCTION(str_replace) zval **subject, **search, **replace, **subject_entry, **pboyer; zval *result; char *string_key; - ulong string_key_len, num_key; + uint string_key_len; + ulong num_key; int boyer = 0; if(ZEND_NUM_ARGS() < 3 || |