re-fix some compiler warnings

This commit is contained in:
Brian Lopez 2010-09-14 22:27:18 -07:00
parent e7924df06a
commit dc9164d016
1 changed files with 2 additions and 2 deletions

View File

@ -95,7 +95,7 @@ static VALUE rb_mysql_result_fetch_row(VALUE self, ID db_timezone, ID app_timezo
mysql2_result_wrapper * wrapper;
MYSQL_ROW row;
MYSQL_FIELD * fields = NULL;
long i = 0;
unsigned int i = 0;
unsigned long * fieldLengths;
void * ptr;
@ -286,7 +286,7 @@ static VALUE rb_mysql_result_fetch_row(VALUE self, ID db_timezone, ID app_timezo
static VALUE rb_mysql_result_fetch_fields(VALUE self) {
mysql2_result_wrapper * wrapper;
long i = 0;
unsigned int i = 0;
short int symbolizeKeys = 0;
VALUE defaults;