active and closed flags only need to be one byte

This commit is contained in:
Brian Lopez 2010-10-31 12:31:54 -07:00
parent 60b8d061ac
commit 974a5658d6
1 changed files with 2 additions and 2 deletions

View File

@ -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;