fix type warning (int and size_t)

This commit is contained in:
Yuichi Nishiwaki 2014-06-28 19:23:24 +09:00
parent 2fb97d16ed
commit 5ba0402221
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ pic_equal_p(pic_state *pic, pic_value x, pic_value y)
case PIC_TT_PAIR:
return pic_equal_p(pic, pic_car(pic, x), pic_car(pic, y)) && pic_equal_p(pic, pic_cdr(pic, x), pic_cdr(pic, y));
case PIC_TT_BLOB: {
int i;
size_t i;
struct pic_blob *u = pic_blob_ptr(x), *v = pic_blob_ptr(y);
if(u->len != v->len){