]> granicus.if.org Git - php/commitdiff
Reduce struct size by 8 bytes on 64-bit
authorAnatol Belski <ab@php.net>
Sun, 18 Feb 2018 23:11:30 +0000 (00:11 +0100)
committerAnatol Belski <ab@php.net>
Mon, 19 Feb 2018 09:12:46 +0000 (10:12 +0100)
ext/intl/intl_error.h

index b65bb2abee8add55bcf16940d38c6174568ec518..11ac469a7d6c11487fcf94254f6055768d2f3386 100644 (file)
@@ -27,8 +27,8 @@
 
 typedef struct _intl_error {
        UErrorCode      code;
-       char*           custom_error_message;
        int             free_custom_error_message;
+       char*           custom_error_message;
 } intl_error;
 
 intl_error* intl_error_create( void );