summaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-05-31 03:05:10 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-05-31 03:05:10 +0900
commit2c711273bb285cdc718b2f3ceb1d77354a47e336 (patch)
tree7a98f4d910cef377c69c5eb245a38d9c86754dcf /compile.c
parente10798b3a3dc1f4e4225ad1b92f9157b58df52d9 (diff)
compile.c: Removed wrong conversion
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c2
1 files changed, 1 insertions, 1 deletions
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");