From 98aeef6facee1c754758b641c6f0fbe4aced4908 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Sat, 13 Sep 2014 12:49:10 +0200 Subject: [PATCH] reduced the struct size by 8 byte on 64 bit --- ext/date/lib/timelib_structs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 { -- 2.40.0