From e79c6696c59e253235f1da1f8d306273b5d215e0 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sun, 15 Jun 2014 09:10:07 +0100 Subject: stmhal: Fix file print methods to use print instead of printf. Also make stdout_print_strn static (ultimately this function needs to be merged with stdout_tx_strn). --- stmhal/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stmhal/file.c') diff --git a/stmhal/file.c b/stmhal/file.c index a00c9a8f8..079ab3965 100644 --- a/stmhal/file.c +++ b/stmhal/file.c @@ -70,7 +70,7 @@ typedef struct _pyb_file_obj_t { } 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) { - printf("", mp_obj_get_type_str(self_in), self_in); + print(env, "", mp_obj_get_type_str(self_in), self_in); } STATIC machine_int_t file_obj_read(mp_obj_t self_in, void *buf, machine_uint_t size, int *errcode) { -- cgit v1.2.3