From f457030a8d859c1525ca82b50aa1084b060def99 Mon Sep 17 00:00:00 2001 From: "Sunrim KIM (keen)" <3han5chou7@gmail.com> Date: Sat, 26 Jul 2014 18:06:34 +0900 Subject: [PATCH] silence warning --- src/write.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/write.c b/src/write.c index 61551b1a..a2e78181 100644 --- a/src/write.c +++ b/src/write.c @@ -333,6 +333,9 @@ write_core(struct writer_control *p, pic_value obj) case PIC_TT_DICT: xfprintf(file, "#", pic_ptr(obj)); break; + case PIC_TT_BLK: + xfprintf(file, "#", pic_ptr(obj)); + break; } }