Skip to content

Commit df20b28

Browse files
committed
minimal: Update mp_builtin_open signature to match new function type.
1 parent 03a7069 commit df20b28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

minimal/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ mp_import_stat_t mp_import_stat(const char *path) {
7777
return MP_IMPORT_STAT_NO_EXIST;
7878
}
7979

80-
mp_obj_t mp_builtin_open(uint n_args, const mp_obj_t *args, mp_map_t *kwargs) {
80+
mp_obj_t mp_builtin_open(size_t n_args, const mp_obj_t *args, mp_map_t *kwargs) {
8181
return mp_const_none;
8282
}
8383
MP_DEFINE_CONST_FUN_OBJ_KW(mp_builtin_open_obj, 1, mp_builtin_open);

0 commit comments

Comments
 (0)