- Coding standards

This commit is contained in:
Felipe Pena 2010-11-06 18:35:38 +00:00
parent f4927c28bc
commit 1db7472a73

View File

@ -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;
}
}