From 298de027d6ba0a9d5100e8c479aecfc40c9ab045 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Mon, 19 Feb 2018 00:11:30 +0100 Subject: [PATCH] Reduce struct size by 8 bytes on 64-bit --- ext/intl/intl_error.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); -- 2.50.1