minimal: Update mp_builtin_open signature to match new function type.

This commit is contained in:
Scott Shawcroft 2017-06-20 17:52:36 -07:00
parent 03a7069d60
commit df20b28805

View File

@ -77,7 +77,7 @@ mp_import_stat_t mp_import_stat(const char *path) {
return MP_IMPORT_STAT_NO_EXIST;
}
mp_obj_t mp_builtin_open(uint n_args, const mp_obj_t *args, mp_map_t *kwargs) {
mp_obj_t mp_builtin_open(size_t n_args, const mp_obj_t *args, mp_map_t *kwargs) {
return mp_const_none;
}
MP_DEFINE_CONST_FUN_OBJ_KW(mp_builtin_open_obj, 1, mp_builtin_open);