Skip to content

Commit 8298251

Browse files
committed
stmhal/pybstdio: Use size_t instead of mp_uint_t.
1 parent e42186d commit 8298251

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stmhal/pybstdio.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ STATIC mp_uint_t stdio_write(mp_obj_t self_in, const void *buf, mp_uint_t size,
8585
}
8686
}
8787

88-
STATIC mp_obj_t stdio_obj___exit__(mp_uint_t n_args, const mp_obj_t *args) {
88+
STATIC mp_obj_t stdio_obj___exit__(size_t n_args, const mp_obj_t *args) {
8989
return mp_const_none;
9090
}
9191
STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(stdio_obj___exit___obj, 4, 4, stdio_obj___exit__);

0 commit comments

Comments
 (0)