From: Felipe Pena Date: Sat, 6 Nov 2010 18:35:38 +0000 (+0000) Subject: - Coding standards X-Git-Tag: php-5.4.0alpha1~191^2~723 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1c556f2030d5093e332b04a62bbff52fe8ce22dd;p=php - Coding standards --- diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index 0978e8303a..b14e39e1b2 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -755,10 +755,9 @@ PHPAPI void php_pcre_match_impl(pcre_cache_entry *pce, char *subject, int subjec efree(subpat_names); /* Did we encounter an error? */ - if(PCRE_G(error_code) == PHP_PCRE_NO_ERROR) { + if (PCRE_G(error_code) == PHP_PCRE_NO_ERROR) { RETVAL_LONG(matched); - } - else { + } else { RETVAL_FALSE; } }