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 {
|
typedef struct {
|
||||||
VALUE encoding;
|
VALUE encoding;
|
||||||
short int active;
|
char active;
|
||||||
short int closed;
|
char closed;
|
||||||
MYSQL *client;
|
MYSQL *client;
|
||||||
} mysql_client_wrapper;
|
} mysql_client_wrapper;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue