Skip to content

Commit f71167e

Browse files
committed
Merge branch 'master' of https://git.php.net/repository/php-src
* 'master' of https://git.php.net/repository/php-src: Fix intl build
2 parents 81b5a06 + 8748e14 commit f71167e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_string.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ END_EXTERN_C()
7474
: erealloc(str, new_len))
7575

7676
static inline char *_str_erealloc(char *str, size_t new_len, size_t old_len) {
77-
char *buf = emalloc(new_len);
77+
char *buf = (char *) emalloc(new_len);
7878
memcpy(buf, str, old_len);
7979
return buf;
8080
}

0 commit comments

Comments
 (0)