reduce the struct size by 8 byte on 64 bit

This commit is contained in:
Anatol Belski 2014-09-19 22:53:51 +02:00
parent 0cd982f15c
commit 3abeb2c8e1

View File

@ -30,14 +30,14 @@
#if HAVE_MBSTRING
/* {{{ typedefs */
typedef struct _php_mb_encoding_handler_info_t {
int data_type;
const char *separator;
unsigned int report_errors: 1;
enum mbfl_no_language to_language;
const mbfl_encoding *to_encoding;
enum mbfl_no_language from_language;
const mbfl_encoding **from_encodings;
size_t num_from_encodings;
int data_type;
unsigned int report_errors : 1;
enum mbfl_no_language to_language;
enum mbfl_no_language from_language;
} php_mb_encoding_handler_info_t;
/* }}}*/