diff options
author | Dmitry Stogov <dmitry@php.net> | 2011-09-13 13:29:35 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2011-09-13 13:29:35 +0000 |
commit | e43ff1359ef20dc7f055d8f34227ade1bff9a0a4 (patch) | |
tree | 5e386de0e3e0a7ed29b7c71371f1fcff2b96b521 /Zend/zend_string.h | |
parent | 9b881b680c4c6cc9cdb7de764527ace6f0b7a34e (diff) | |
download | php-git-e43ff1359ef20dc7f055d8f34227ade1bff9a0a4.tar.gz |
Fixed ZE specific compile warnings (Bug #55629)
Diffstat (limited to 'Zend/zend_string.h')
-rw-r--r-- | Zend/zend_string.h | 4 |
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) |