Skip to content

Commit

Permalink
Merge branch 'PHP-5.5' of https://git.php.net/repository/php-src into…
Browse files Browse the repository at this point in the history
… PHP-5.5

* 'PHP-5.5' of https://git.php.net/repository/php-src:
  Suppress compliation warning "warning: passing argument 1 of ‘_efree’ discards qualifiers from pointer target type"
  • Loading branch information
cjbj committed Aug 21, 2013
2 parents d85827f + 9895e8b commit d2a2e94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/intl/intl_data.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ typedef struct _intl_data {
int u8len; \
intl_convert_utf16_to_utf8(&u8value, &u8len, ustring, ulen, &INTL_DATA_ERROR_CODE((obj))); \
if((free_it)) { \
efree(ustring); \
efree((void *)ustring); \
} \
INTL_METHOD_CHECK_STATUS((obj), "Error converting value to UTF-8"); \
RETVAL_STRINGL(u8value, u8len, 0); \
Expand Down

0 comments on commit d2a2e94

Please sign in to comment.