active and closed flags only need to be one byte
This commit is contained in:
parent
60b8d061ac
commit
974a5658d6
|
@ -33,8 +33,8 @@ void init_mysql2_client();
|
|||
|
||||
typedef struct {
|
||||
VALUE encoding;
|
||||
short int active;
|
||||
short int closed;
|
||||
char active;
|
||||
char closed;
|
||||
MYSQL *client;
|
||||
} mysql_client_wrapper;
|
||||
|
||||
|
|
Loading…
Reference in New Issue