diff options
author | Nobuyoshi Nakada <[email protected]> | 2020-05-31 03:05:10 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2020-05-31 03:05:10 +0900 |
commit | 2c711273bb285cdc718b2f3ceb1d77354a47e336 (patch) | |
tree | 7a98f4d910cef377c69c5eb245a38d9c86754dcf /compile.c | |
parent | e10798b3a3dc1f4e4225ad1b92f9157b58df52d9 (diff) |
compile.c: Removed wrong conversion
Diffstat (limited to 'compile.c')
-rw-r--r-- | compile.c | 2 |
1 files changed, 1 insertions, 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"); |