Skip to content

Commit 916ceec

Browse files
committed
py/emitglue: Remove n_pos_args from DEBUG_printf.
This argument was renamed in 39bf055. Signed-off-by: Damien George <damien@micropython.org>
1 parent 717e3dc commit 916ceec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

py/emitglue.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ void mp_emit_glue_assign_native(mp_raw_code_t *rc, mp_raw_code_kind_t kind, void
149149
#endif
150150

151151
#if DEBUG_PRINT
152-
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);
152+
DEBUG_printf("assign native: kind=%d fun=%p len=" UINT_FMT " flags=%x\n", kind, fun_data, fun_len, (uint)scope_flags);
153153
for (mp_uint_t i = 0; i < fun_len; i++) {
154154
if (i > 0 && i % 16 == 0) {
155155
DEBUG_printf("\n");

0 commit comments

Comments
 (0)