Skip to content

Commit c4df191

Browse files
committed
Merge branch 'master' of https://git.php.net/repository/php-src
# By Nikita Popov # Via Nikita Popov * 'master' of https://git.php.net/repository/php-src: Fix intl build
2 parents e03a3d5 + 8748e14 commit c4df191

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)