summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-09-12 23:08:09 +0200
committerAnatol Belski <ab@php.net>2014-09-12 23:08:09 +0200
commit67beaebaa88597495b515d570199824abc65e145 (patch)
tree35e4243b5ce6d761ad6023281e7e6a3b21fc5b16
parente251ecb6e96ae3a53ad6187346a07b2e3b0b1a90 (diff)
downloadphp-git-67beaebaa88597495b515d570199824abc65e145.tar.gz
reduce the struct size by 8 byte on x64
-rw-r--r--main/php_output.h2
1 files changed, 1 insertions, 1 deletions
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 */