Fix compilation on Ruby 1.9.

This commit is contained in:
Hongli Lai (Phusion) 2008-11-18 18:56:40 +01:00
parent a1d10c140b
commit 1af96063be
1 changed files with 6 additions and 6 deletions

View File

@ -1580,12 +1580,12 @@ static VALUE stmt_execute(int argc, VALUE *argv, VALUE obj)
s->param.bind[i].buffer = &(s->param.buffer[i]); s->param.bind[i].buffer = &(s->param.buffer[i]);
t.second_part = 0; t.second_part = 0;
t.neg = 0; t.neg = 0;
t.second = FIX2INT(RARRAY(a)->ptr[0]); t.second = FIX2INT(rb_ary_entry(a, 0));
t.minute = FIX2INT(RARRAY(a)->ptr[1]); t.minute = FIX2INT(rb_ary_entry(a, 1));
t.hour = FIX2INT(RARRAY(a)->ptr[2]); t.hour = FIX2INT(rb_ary_entry(a, 2));
t.day = FIX2INT(RARRAY(a)->ptr[3]); t.day = FIX2INT(rb_ary_entry(a, 3));
t.month = FIX2INT(RARRAY(a)->ptr[4]); t.month = FIX2INT(rb_ary_entry(a, 4));
t.year = FIX2INT(RARRAY(a)->ptr[5]); t.year = FIX2INT(rb_ary_entry(a, 5));
*(MYSQL_TIME*)&(s->param.buffer[i]) = t; *(MYSQL_TIME*)&(s->param.buffer[i]) = t;
} else if (CLASS_OF(argv[i]) == cMysqlTime) { } else if (CLASS_OF(argv[i]) == cMysqlTime) {
MYSQL_TIME t; MYSQL_TIME t;