1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

compile.c: Removed wrong conversion

This commit is contained in:
Nobuyoshi Nakada 2020-05-31 03:05:10 +09:00
parent e10798b3a3
commit 2c711273bb
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

View file

@ -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");