diff options
author | Anatol Belski <ab@php.net> | 2017-07-23 14:13:16 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2017-07-23 16:37:30 +0200 |
commit | ea83b69883f3f77fd27e4663fa854c88f141ab41 (patch) | |
tree | 171fa9adc7978f9c637ef8c7c7640d8a96d6ac4a /ext/mbstring | |
parent | fe8384fdfd73b0f63208f5c61abcd641dfa8a8e5 (diff) | |
download | php-git-ea83b69883f3f77fd27e4663fa854c88f141ab41.tar.gz |
Adjust datatypes and reorder which saves 8 bytes on 64-bit
Diffstat (limited to 'ext/mbstring')
-rw-r--r-- | ext/mbstring/mbstring.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/mbstring/mbstring.h b/ext/mbstring/mbstring.h index 786bb5feb7..6d04072506 100644 --- a/ext/mbstring/mbstring.h +++ b/ext/mbstring/mbstring.h @@ -161,7 +161,6 @@ int _php_mb_ini_mbstring_internal_encoding_set(const char *new_value, uint32_t n ZEND_BEGIN_MODULE_GLOBALS(mbstring) char *internal_encoding_name; - enum mbfl_no_language language; const mbfl_encoding *internal_encoding; const mbfl_encoding *current_internal_encoding; const mbfl_encoding *http_output_encoding; @@ -183,9 +182,10 @@ ZEND_BEGIN_MODULE_GLOBALS(mbstring) int filter_illegal_substchar; int current_filter_illegal_mode; int current_filter_illegal_substchar; - long func_overload; + zend_long func_overload; + enum mbfl_no_language language; zend_bool encoding_translation; - long strict_detection; + zend_bool strict_detection; size_t illegalchars; mbfl_buffer_converter *outconv; void *http_output_conv_mimetypes; |