1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 09:42:22 +01:00

- Get rid of warning.

This commit is contained in:
Andi Gutmans
2001-04-21 11:40:04 +00:00
parent 836ff4bf65
commit a6f90ec7c6

View File

@@ -185,8 +185,8 @@ int php_init_config(char *php_ini_path_override)
return FAILURE;
}
zend_llist_init(&extension_lists.engine, sizeof(zval), free_estring, 1);
zend_llist_init(&extension_lists.functions, sizeof(zval), ZVAL_DESTRUCTOR, 1);
zend_llist_init(&extension_lists.engine, sizeof(zval), (llist_dtor_func_t) free_estring, 1);
zend_llist_init(&extension_lists.functions, sizeof(zval), (llist_dtor_func_t) ZVAL_DESTRUCTOR, 1);
safe_mode_state = PG(safe_mode);
open_basedir = PG(open_basedir);