From: Anatol Belski Date: Sat, 13 Sep 2014 10:49:10 +0000 (+0200) Subject: reduced the struct size by 8 byte on 64 bit X-Git-Tag: PRE_NATIVE_TLS_MERGE~150^2~18^2~29 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=98aeef6facee1c754758b641c6f0fbe4aced4908;p=php reduced the struct size by 8 byte on 64 bit --- diff --git a/ext/date/lib/timelib_structs.h b/ext/date/lib/timelib_structs.h index e5780f6cca..d34e33d8a5 100644 --- a/ext/date/lib/timelib_structs.h +++ b/ext/date/lib/timelib_structs.h @@ -173,10 +173,10 @@ typedef struct timelib_error_message { } timelib_error_message; typedef struct timelib_error_container { - int warning_count; + struct timelib_error_message *error_messages; struct timelib_error_message *warning_messages; int error_count; - struct timelib_error_message *error_messages; + int warning_count; } timelib_error_container; typedef struct _timelib_tz_lookup_table {