From: Anatol Belski Date: Fri, 19 Sep 2014 20:53:51 +0000 (+0200) Subject: reduce the struct size by 8 byte on 64 bit X-Git-Tag: POST_NATIVE_TLS_MERGE^2~172 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3abeb2c8e1d822019e6ff9aa4c68d48446a721a0;p=php reduce the struct size by 8 byte on 64 bit --- diff --git a/ext/mbstring/mb_gpc.h b/ext/mbstring/mb_gpc.h index dfbb8d322c..091d8e2d9b 100644 --- a/ext/mbstring/mb_gpc.h +++ b/ext/mbstring/mb_gpc.h @@ -30,14 +30,14 @@ #if HAVE_MBSTRING /* {{{ typedefs */ typedef struct _php_mb_encoding_handler_info_t { - int data_type; const char *separator; - unsigned int report_errors: 1; - enum mbfl_no_language to_language; const mbfl_encoding *to_encoding; - enum mbfl_no_language from_language; const mbfl_encoding **from_encodings; size_t num_from_encodings; + int data_type; + unsigned int report_errors : 1; + enum mbfl_no_language to_language; + enum mbfl_no_language from_language; } php_mb_encoding_handler_info_t; /* }}}*/