From 8fc0f1a788ae5a67cc247d0f5734c214d567a3f5 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Fri, 12 Sep 2014 22:06:10 +0200 Subject: [PATCH] reduce size by 8 byte on 64 bit --- Zend/zend_stream.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Zend/zend_stream.h b/Zend/zend_stream.h index 10fa8d8a60..84dc2e00b8 100644 --- a/Zend/zend_stream.h +++ b/Zend/zend_stream.h @@ -63,14 +63,14 @@ typedef struct _zend_stream { } zend_stream; typedef struct _zend_file_handle { - zend_stream_type type; - const char *filename; - char *opened_path; union { int fd; FILE *fp; zend_stream stream; } handle; + const char *filename; + char *opened_path; + zend_stream_type type; zend_bool free_filename; } zend_file_handle; -- 2.40.0