From 1db7472a73740466b5cd6752e9593d5e5d16a552 Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Sat, 6 Nov 2010 18:35:38 +0000 Subject: [PATCH] - Coding standards --- ext/pcre/php_pcre.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index ef7e051d86..01d28fb7d1 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; } } -- 2.40.0