From 67beaebaa88597495b515d570199824abc65e145 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Fri, 12 Sep 2014 23:08:09 +0200 Subject: [PATCH] reduce the struct size by 8 byte on x64 --- main/php_output.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.40.0