From 2617eebf2ff77e58f415162300747eaf1a5ab5d7 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sun, 25 May 2014 22:27:57 +0100 Subject: Change const byte* to const char* where sensible. This removes need for some casts (at least, more than it adds need for new casts!). --- stmhal/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stmhal/input.c') diff --git a/stmhal/input.c b/stmhal/input.c index 94f66b97f..7f3b17c6f 100644 --- a/stmhal/input.c +++ b/stmhal/input.c @@ -44,7 +44,7 @@ STATIC mp_obj_t mp_builtin_input(uint n_args, const mp_obj_t *args) { if (line.len == 0 && ret == VCP_CHAR_CTRL_D) { nlr_raise(mp_obj_new_exception(&mp_type_EOFError)); } - mp_obj_t o = mp_obj_new_str((const byte*)line.buf, line.len, false); + mp_obj_t o = mp_obj_new_str(line.buf, line.len, false); vstr_clear(&line); return o; } -- cgit v1.2.3