diff options
author | Shane Caraveo <shane@php.net> | 2003-06-30 20:33:02 +0000 |
---|---|---|
committer | Shane Caraveo <shane@php.net> | 2003-06-30 20:33:02 +0000 |
commit | 5efc65f910ee6b241e040f3a6f1576d6acbfb429 (patch) | |
tree | 8e80e841dd2156aef434c86d5cced7205b367074 /Zend/zend_operators.h | |
parent | d6ee8bab7f8460ad92030ca6ed38bbe5d7cbbba7 (diff) | |
download | php-git-5efc65f910ee6b241e040f3a6f1576d6acbfb429.tar.gz |
this fixes including this header in a c++ file (vs6)
Diffstat (limited to 'Zend/zend_operators.h')
-rw-r--r-- | Zend/zend_operators.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_operators.h b/Zend/zend_operators.h index dcfe4c943e..fefc8652dd 100644 --- a/Zend/zend_operators.h +++ b/Zend/zend_operators.h @@ -203,7 +203,7 @@ ZEND_API char *zend_str_tolower_copy(char *dest, const char *source, unsigned in static inline char * zend_str_tolower_dup(const char *source, unsigned int length) { - return zend_str_tolower_copy(emalloc(length+1), source, length); + return zend_str_tolower_copy((char *)emalloc(length+1), source, length); } ZEND_API int zend_binary_zval_strcmp(zval *s1, zval *s2); |