From 1c556f2030d5093e332b04a62bbff52fe8ce22dd Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Sat, 6 Nov 2010 18:35:38 +0000 Subject: - Coding standards --- ext/pcre/php_pcre.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'ext/pcre/php_pcre.c') 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; } } -- cgit v1.2.1