]> granicus.if.org Git - php/commitdiff
reduced the struct size by 8 byte on 64 bit
authorAnatol Belski <ab@php.net>
Sat, 13 Sep 2014 10:49:10 +0000 (12:49 +0200)
committerAnatol Belski <ab@php.net>
Sat, 13 Sep 2014 10:49:10 +0000 (12:49 +0200)
ext/date/lib/timelib_structs.h

index e5780f6cca99a0a2a3d0be931286fa1bac335045..d34e33d8a5a563a03312f361058aa8fa97019485 100644 (file)
@@ -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 {