diff options
Diffstat (limited to 'stmhal/file.c')
-rw-r--r-- | stmhal/file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stmhal/file.c b/stmhal/file.c index 62e5828747..3f7342bd6e 100644 --- a/stmhal/file.c +++ b/stmhal/file.c @@ -65,8 +65,8 @@ typedef struct _pyb_file_obj_t { FIL fp; } pyb_file_obj_t; -void file_obj_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t self_in, mp_print_kind_t kind) { - print(env, "<io.%s %p>", mp_obj_get_type_str(self_in), self_in); +void file_obj_print(const mp_print_t *print, mp_obj_t self_in, mp_print_kind_t kind) { + mp_printf(print, "<io.%s %p>", mp_obj_get_type_str(self_in), self_in); } STATIC mp_uint_t file_obj_read(mp_obj_t self_in, void *buf, mp_uint_t size, int *errcode) { |