diff options
author | Hannes Magnusson <bjori@php.net> | 2007-01-10 14:37:31 +0000 |
---|---|---|
committer | Hannes Magnusson <bjori@php.net> | 2007-01-10 14:37:31 +0000 |
commit | 5d75262062044fa61e243eee117253a709a76a03 (patch) | |
tree | 4350fd025b5bb45250f272d9c82847901fcf1b61 /ext/pcre/php_pcre.c | |
parent | 48b4cb96e0af389259505b2619c1d30715e08d36 (diff) | |
download | php-git-5d75262062044fa61e243eee117253a709a76a03.tar.gz |
Fix build on system where HAVE_SETLOCALE is not defined
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 ad2321ad7a..bd1383b43a 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -214,8 +214,8 @@ PHPAPI pcre_cache_entry* pcre_get_compiled_regex_cache(char *regex, int regex_le return pce; #if HAVE_SETLOCALE } - } #endif + } } p = regex; |