diff options
Diffstat (limited to 'unix')
-rw-r--r-- | unix/mpconfigport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/mpconfigport.h b/unix/mpconfigport.h index b8ee020f1e..3798f88b58 100644 --- a/unix/mpconfigport.h +++ b/unix/mpconfigport.h @@ -34,4 +34,4 @@ typedef const void *machine_const_ptr_t; // must be of pointer size struct _mp_obj_fun_native_t; extern const struct _mp_obj_fun_native_t mp_builtin_open_obj; #define MICROPY_EXTRA_BUILTINS \ - { MP_QSTR_open, (mp_obj_t)&mp_builtin_open_obj }, + { MP_OBJ_NEW_QSTR(MP_QSTR_open), (mp_obj_t)&mp_builtin_open_obj }, |