Skip to content

Commit

Permalink
Merge branch 'PHP-5.4' into PHP-5.5
Browse files Browse the repository at this point in the history
* PHP-5.4:
  Suppress compliation warning "warning: passing argument 1 of ‘_efree’ discards qualifiers from pointer target type"
  Revert "Suppress compliation warning "warning: passing argument 1 of ‘_efree’ discards qualifiers from pointer target type""
  • Loading branch information
cjbj committed Aug 22, 2013
2 parents 18282f4 + 7109f36 commit c1ecdfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/intl/resourcebundle/resourcebundle.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ void resourcebundle_extract_value( zval *return_value, ResourceBundle_object *so
case URES_STRING:
ufield = ures_getString( source->child, &ilen, &INTL_DATA_ERROR_CODE(source) );
INTL_METHOD_CHECK_STATUS(source, "Failed to retrieve string value");
INTL_METHOD_RETVAL_UTF8(source, ufield, ilen, 0);
INTL_METHOD_RETVAL_UTF8(source, (UChar *)ufield, ilen, 0);
break;

case URES_BINARY:
Expand Down

0 comments on commit c1ecdfb

Please sign in to comment.