From 2c711273bb285cdc718b2f3ceb1d77354a47e336 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sun, 31 May 2020 03:05:10 +0900 Subject: [PATCH] compile.c: Removed wrong conversion --- compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile.c b/compile.c index 1ef794349d..de41e4fa39 100644 --- a/compile.c +++ b/compile.c @@ -1125,7 +1125,7 @@ debug_list(ISEQ_ARG_DECLARE LINK_ANCHOR *const anchor) anchor->anchor.next, anchor->last); while (list) { printf("curr: %p, next: %p, prev: %p, type: %d\n", list, list->next, - list->prev, FIX2INT(list->type)); + list->prev, (int)list->type); list = list->next; } printf("----\n");