diff options
author | Damien George <damien@micropython.org> | 2024-02-20 11:31:34 +1100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2024-02-20 11:31:34 +1100 |
commit | 916ceecaef18ab427bc35158a2281988df2c494c (patch) | |
tree | 1f5ee1effe4a0efc32faebd407160cbc56c4fd79 /py/emitglue.c | |
parent | 717e3dca1b3ae736a683f8455a23c21192d6de69 (diff) |
py/emitglue: Remove n_pos_args from DEBUG_printf.
This argument was renamed in 39bf055d23be4b0f761af115773c3db1074fc2dd.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'py/emitglue.c')
-rw-r--r-- | py/emitglue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/emitglue.c b/py/emitglue.c index 415aa3a3d..258322724 100644 --- a/py/emitglue.c +++ b/py/emitglue.c @@ -149,7 +149,7 @@ void mp_emit_glue_assign_native(mp_raw_code_t *rc, mp_raw_code_kind_t kind, void #endif #if DEBUG_PRINT - DEBUG_printf("assign native: kind=%d fun=%p len=" UINT_FMT " n_pos_args=" UINT_FMT " flags=%x\n", kind, fun_data, fun_len, n_pos_args, (uint)scope_flags); + DEBUG_printf("assign native: kind=%d fun=%p len=" UINT_FMT " flags=%x\n", kind, fun_data, fun_len, (uint)scope_flags); for (mp_uint_t i = 0; i < fun_len; i++) { if (i > 0 && i % 16 == 0) { DEBUG_printf("\n"); |