sync with CODING_STANDARDS

This commit is contained in:
Zeev Suraski 2001-08-16 20:57:55 +00:00
parent 77c52275a1
commit ef18947e5a

View File

@ -135,8 +135,9 @@ PHP_FUNCTION(confirm_extname_compiled)
int arg_len, len;
char string[256];
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &arg, &arg_len) == FAILURE)
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &arg, &arg_len) == FAILURE) {
return;
}
len = sprintf(string, "Congratulations! You have successfully modified ext/%.78s/config.m4. Module %.78s is now compiled into PHP.", "extname", arg);
RETURN_STRINGL(string, len, 1);