summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Jones <sixd@php.net>2013-08-22 08:58:24 -0700
committerChristopher Jones <sixd@php.net>2013-08-22 08:58:24 -0700
commitf2ceb4963e1ecce4535d3a9b1e3dfa6960aff2c6 (patch)
tree106624d67cd87091b5442db092da76ec9d464f21
parentd5987478a8fd566775510c08993cc933267a3765 (diff)
downloadphp-git-f2ceb4963e1ecce4535d3a9b1e3dfa6960aff2c6.tar.gz
Revert "Suppress compliation warning "warning: passing argument 1 of ‘_efree’ discards qualifiers from pointer target type""
This reverts commit f38bd22ed2c5f710f72e719d7ab2a41ce30541fc.
-rw-r--r--ext/intl/intl_data.h2
1 files changed, 1 insertions, 1 deletions
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); \