diff options
Diffstat (limited to 'py/runtime.c')
-rw-r--r-- | py/runtime.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/py/runtime.c b/py/runtime.c index 81881c403..006a00d90 100644 --- a/py/runtime.c +++ b/py/runtime.c @@ -1027,7 +1027,8 @@ void rt_assign_byte_code(int unique_code_id, byte *code, uint len, int n_args, i DEBUG_printf(" %02x", code[i]); } DEBUG_printf("\n"); - py_un_byte_code(code, len); + extern void py_show_byte_code(const byte *code, int len); + py_show_byte_code(code, len); #ifdef WRITE_CODE if (fp_write_code != NULL) { |