diff options
author | Frank M. Kromann <fmk@php.net> | 2001-03-13 16:39:47 +0000 |
---|---|---|
committer | Frank M. Kromann <fmk@php.net> | 2001-03-13 16:39:47 +0000 |
commit | f49d04fb12828b64db6f662f9bfb7f6a97e4fc28 (patch) | |
tree | 3bbfd9c515606e60c33743adeb44e481c9804a05 /ext/pcre/php_pcre.c | |
parent | 0981778351f8466b824590577ae0a94ba1e19daf (diff) | |
download | php-git-f49d04fb12828b64db6f662f9bfb7f6a97e4fc28.tar.gz |
Fixing compiler warning on win32
Diffstat (limited to 'ext/pcre/php_pcre.c')
-rw-r--r-- | ext/pcre/php_pcre.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index 39eccc25ea..4a0afe1f89 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -961,7 +961,7 @@ static char *php_replace_in_subject(zval *regex, zval *replace, zval **subject, } -static void preg_replace_impl(INTERNAL_FUNCTION_PARAMETERS, int is_callable_replace) +static void preg_replace_impl(INTERNAL_FUNCTION_PARAMETERS, zend_bool is_callable_replace) { zval **regex, **replace, |