From 55a6c270ddf42f9ebd5e2abf4deb6f9f6fc348e8 Mon Sep 17 00:00:00 2001 From: Zeev Suraski Date: Sat, 14 Aug 1999 10:04:04 +0000 Subject: Fix thread unsafe version --- main/php_ini.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/php_ini.h') diff --git a/main/php_ini.h b/main/php_ini.h index 4dfd0b40bd..6ea9885ffc 100644 --- a/main/php_ini.h +++ b/main/php_ini.h @@ -108,7 +108,7 @@ PHPAPI PHP_INI_DISP(php_ini_color_displayer_cb); #else #define STD_PHP_INI_ENTRY(name, default_value, modifyable, on_modify, property_name, struct_type, struct_ptr) \ PHP_INI_ENTRY2(name, default_value, modifyable, on_modify, (void *) XtOffsetOf(struct_type, property_name), (void *) &struct_ptr) -#define STD_PHP_INI_ENTRY_EX(name, default_value, modifyable, on_modify, property_name, struct_type, struct_ptr, display) \ +#define STD_PHP_INI_ENTRY_EX(name, default_value, modifyable, on_modify, property_name, struct_type, struct_ptr, displayer) \ PHP_INI_ENTRY2_EX(name, default_value, modifyable, on_modify, (void *) XtOffsetOf(struct_type, property_name), (void *) &struct_ptr, displayer) #define STD_PHP_INI_BOOLEAN(name, default_value, modifyable, on_modify, property_name, struct_type, struct_ptr) \ PHP_INI_ENTRY3_EX(name, default_value, modifyable, on_modify, (void *) XtOffsetOf(struct_type, property_name), (void *) &struct_ptr, NULL, php_ini_boolean_displayer_cb) -- cgit v1.2.1