From: Christopher Jones Date: Thu, 22 Aug 2013 15:57:18 +0000 (-0700) Subject: Revert "Suppress compliation warning "warning: passing argument 1 of ‘_efree’ discard... X-Git-Tag: php-5.6.0alpha1~258 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a61f5bf925837ad39962f5d128b748f1c0c3b321;p=php Revert "Suppress compliation warning "warning: passing argument 1 of ‘_efree’ discards qualifiers from pointer target type"" This reverts commit f38bd22ed2c5f710f72e719d7ab2a41ce30541fc. --- diff --git a/ext/intl/intl_data.h b/ext/intl/intl_data.h index 6966dc2891..66ca27ae79 100644 --- a/ext/intl/intl_data.h +++ b/ext/intl/intl_data.h @@ -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((void *)ustring); \ + efree(ustring); \ } \ INTL_METHOD_CHECK_STATUS((obj), "Error converting value to UTF-8"); \ RETVAL_STRINGL(u8value, u8len, 0); \