Merge pull request #180 from KeenS/master

silence warning
This commit is contained in:
Yuichi Nishiwaki 2014-07-27 11:37:26 +09:00
commit 1f98f2ab4e
1 changed files with 3 additions and 0 deletions

View File

@ -343,6 +343,9 @@ write_core(struct writer_control *p, pic_value obj)
case PIC_TT_DICT:
xfprintf(file, "#<dict %p>", pic_ptr(obj));
break;
case PIC_TT_BLK:
xfprintf(file, "#<blk %p>", pic_ptr(obj));
break;
}
}