]> granicus.if.org Git - php/commitdiff
reduce the struct size by 8 byte on x64
authorAnatol Belski <ab@php.net>
Fri, 12 Sep 2014 21:08:09 +0000 (23:08 +0200)
committerAnatol Belski <ab@php.net>
Fri, 12 Sep 2014 21:08:09 +0000 (23:08 +0200)
main/php_output.h

index f8b961c7c3eb0146faea215aa727ba9e891f7ae4..2fbc088d0552a5c67fbb1b597b0bbb728d7440a5 100644 (file)
@@ -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 */