Fixed build.... (shouldn't it be zend_output_globals?)

This commit is contained in:
Xinchen Hui 2014-10-30 11:42:02 +08:00
parent fc904569ea
commit 7b4993dd16
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@
#ifdef ZTS
PHPAPI int output_globals_id;
#else
PHPAPI php_output_globals output_globals;
PHPAPI zend_output_globals output_globals;
#endif
const char php_output_default_handler_name[sizeof("default output handler")] = "default output handler";

View File

@ -155,7 +155,7 @@ ZEND_END_MODULE_GLOBALS(output)
#ifdef ZTS
PHPAPI extern int output_globals_id;
#else
PHPAPI extern php_output_globals output_globals;
PHPAPI extern zend_output_globals output_globals;
#endif
/* there should not be a need to use OG() from outside of output.c */