From: Anatol Belski Date: Sun, 18 Feb 2018 23:11:30 +0000 (+0100) Subject: Reduce struct size by 8 bytes on 64-bit X-Git-Tag: php-7.3.0alpha1~348 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=298de027d6ba0a9d5100e8c479aecfc40c9ab045;p=php Reduce struct size by 8 bytes on 64-bit --- diff --git a/ext/intl/intl_error.h b/ext/intl/intl_error.h index b65bb2abee..11ac469a7d 100644 --- a/ext/intl/intl_error.h +++ b/ext/intl/intl_error.h @@ -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 );