mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
this fixes including this header in a c++ file (vs6)
This commit is contained in:
parent
d6ee8bab7f
commit
5efc65f910
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue