diff options
author | Zeev Suraski <zeev@php.net> | 1999-08-14 10:04:04 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-08-14 10:04:04 +0000 |
commit | 55a6c270ddf42f9ebd5e2abf4deb6f9f6fc348e8 (patch) | |
tree | be4814f13473e2e7494918beab5eea7ea21d0446 /main/php_ini.h | |
parent | 7145d1a21ad480103c3069ca6d631a1589297601 (diff) | |
download | php-git-55a6c270ddf42f9ebd5e2abf4deb6f9f6fc348e8.tar.gz |
Fix thread unsafe version
Diffstat (limited to 'main/php_ini.h')
-rw-r--r-- | main/php_ini.h | 2 |
1 files changed, 1 insertions, 1 deletions
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) |