diff options
Diffstat (limited to 'ext/intl/msgformat/msgformat_attr.c')
-rw-r--r-- | ext/intl/msgformat/msgformat_attr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/intl/msgformat/msgformat_attr.c b/ext/intl/msgformat/msgformat_attr.c index 4fa07a96ea..1d9996566a 100644 --- a/ext/intl/msgformat/msgformat_attr.c +++ b/ext/intl/msgformat/msgformat_attr.c @@ -36,7 +36,7 @@ PHP_FUNCTION( msgfmt_get_pattern ) /* Parse parameters. */ if( zend_parse_method_parameters( ZEND_NUM_ARGS(), getThis(), "O", &object, MessageFormatter_ce_ptr ) == FAILURE ) { - RETURN_FALSE; + return; } /* Fetch the object. */ @@ -67,7 +67,7 @@ PHP_FUNCTION( msgfmt_set_pattern ) if( zend_parse_method_parameters( ZEND_NUM_ARGS(), getThis(), "Os", &object, MessageFormatter_ce_ptr, &value, &value_len ) == FAILURE ) { - RETURN_FALSE; + return; } MSG_FORMAT_METHOD_FETCH_OBJECT; @@ -121,7 +121,7 @@ PHP_FUNCTION( msgfmt_get_locale ) if( zend_parse_method_parameters( ZEND_NUM_ARGS(), getThis(), "O", &object, MessageFormatter_ce_ptr ) == FAILURE ) { - RETURN_FALSE; + return; } /* Fetch the object. */ |