From: Anatol Belski Date: Fri, 12 Sep 2014 21:08:09 +0000 (+0200) Subject: reduce the struct size by 8 byte on x64 X-Git-Tag: PRE_NATIVE_TLS_MERGE~150^2~18^2~33 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=67beaebaa88597495b515d570199824abc65e145;p=php reduce the struct size by 8 byte on x64 --- diff --git a/main/php_output.h b/main/php_output.h index f8b961c7c3..2fbc088d05 100644 --- a/main/php_output.h +++ b/main/php_output.h @@ -143,12 +143,12 @@ typedef struct _php_output_handler { } php_output_handler; ZEND_BEGIN_MODULE_GLOBALS(output) - int flags; zend_stack handlers; php_output_handler *active; php_output_handler *running; const char *output_start_filename; int output_start_lineno; + int flags; ZEND_END_MODULE_GLOBALS(output) /* there should not be a need to use OG() from outside of output.c */