Skip to content

Commit 8748e14

Browse files
committed
Fix intl build
1 parent db6d93f commit 8748e14

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)