summaryrefslogtreecommitdiff
path: root/Zend/zend_string.h
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2011-09-13 13:29:35 +0000
committerDmitry Stogov <dmitry@php.net>2011-09-13 13:29:35 +0000
commit4a25a7740d62c9ec0318001c3f6d6b3ae01d96ad (patch)
tree3e5041ac2a54ff635c9e77d97e2a14a2f1c860c6 /Zend/zend_string.h
parent3a3c2942d254be88b82fc871ef4fa9698e921ac7 (diff)
downloadphp-git-4a25a7740d62c9ec0318001c3f6d6b3ae01d96ad.tar.gz
Fixed ZE specific compile warnings (Bug #55629)
Diffstat (limited to 'Zend/zend_string.h')
-rw-r--r--Zend/zend_string.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_string.h b/Zend/zend_string.h
index a130fbcc38..6c0045278b 100644
--- a/Zend/zend_string.h
+++ b/Zend/zend_string.h
@@ -50,13 +50,13 @@ void zend_interned_strings_dtor(TSRMLS_D);
#define str_efree(s) do { \
if (!IS_INTERNED(s)) { \
- efree(s); \
+ efree((char*)s); \
} \
} while (0)
#define str_free(s) do { \
if (!IS_INTERNED(s)) { \
- free(s); \
+ free((char*)s); \
} \
} while (0)