Skip to content

Commit a6f90ec

Browse files
author
Andi Gutmans
committed
- Get rid of warning.
1 parent 836ff4b commit a6f90ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main/php_ini.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,8 @@ int php_init_config(char *php_ini_path_override)
185185
return FAILURE;
186186
}
187187

188-
zend_llist_init(&extension_lists.engine, sizeof(zval), free_estring, 1);
189-
zend_llist_init(&extension_lists.functions, sizeof(zval), ZVAL_DESTRUCTOR, 1);
188+
zend_llist_init(&extension_lists.engine, sizeof(zval), (llist_dtor_func_t) free_estring, 1);
189+
zend_llist_init(&extension_lists.functions, sizeof(zval), (llist_dtor_func_t) ZVAL_DESTRUCTOR, 1);
190190

191191
safe_mode_state = PG(safe_mode);
192192
open_basedir = PG(open_basedir);

0 commit comments

Comments
 (0)