diff options
Diffstat (limited to 'stmhal/pybstdio.c')
-rw-r--r-- | stmhal/pybstdio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/pybstdio.c b/stmhal/pybstdio.c index 59e1ead567..05ea06eb44 100644 --- a/stmhal/pybstdio.c +++ b/stmhal/pybstdio.c @@ -96,7 +96,7 @@ typedef struct _pyb_stdio_obj_t { void stdio_obj_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t self_in, mp_print_kind_t kind) { pyb_stdio_obj_t *self = self_in; - printf("<io.FileIO %d>", self->fd); + print(env, "<io.FileIO %d>", self->fd); } STATIC machine_int_t stdio_read(mp_obj_t self_in, void *buf, machine_uint_t size, int *errcode) { |