Skip to content

Commit 9d9fa32

Browse files
committed
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3: Fix iov_base pointer type for illumos
2 parents a2604e6 + 12db8b9 commit 9d9fa32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/zend_file_cache.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -943,7 +943,7 @@ int zend_file_cache_script_store(zend_persistent_script *script, int in_shm)
943943
#endif
944944

945945
#ifdef HAVE_SYS_UIO_H
946-
vec[0].iov_base = &info;
946+
vec[0].iov_base = (void *)&info;
947947
vec[0].iov_len = sizeof(info);
948948
vec[1].iov_base = buf;
949949
vec[1].iov_len = script->size;

0 commit comments

Comments
 (0)