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:
parent
e10798b3a3
commit
2c711273bb
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue