summaryrefslogtreecommitdiff
path: root/ext/intl/intl_error.h
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2018-02-19 00:11:30 +0100
committerAnatol Belski <ab@php.net>2018-02-19 10:12:46 +0100
commit298de027d6ba0a9d5100e8c479aecfc40c9ab045 (patch)
tree15e6f89207f151d5664f3d78b5bffb024e330b82 /ext/intl/intl_error.h
parent5bbf27b87b6ef29d501821e808fa4905bd774073 (diff)
downloadphp-git-298de027d6ba0a9d5100e8c479aecfc40c9ab045.tar.gz
Reduce struct size by 8 bytes on 64-bit
Diffstat (limited to 'ext/intl/intl_error.h')
-rw-r--r--ext/intl/intl_error.h2
1 files changed, 1 insertions, 1 deletions
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 );