diff options
author | Damien George <damien.p.george@gmail.com> | 2014-05-25 22:27:57 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-05-25 22:27:57 +0100 |
commit | 2617eebf2ff77e58f415162300747eaf1a5ab5d7 (patch) | |
tree | 7065586f59aa181b70b4721363ff7c7677f8e772 /unix/input.c | |
parent | f88fc7bd23c7bab257a01857c6f4683ce491f78c (diff) |
Change const byte* to const char* where sensible.
This removes need for some casts (at least, more than it adds need
for new casts!).
Diffstat (limited to 'unix/input.c')
-rw-r--r-- | unix/input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/input.c b/unix/input.c index 06190306a..4d856f2ff 100644 --- a/unix/input.c +++ b/unix/input.c @@ -77,7 +77,7 @@ STATIC mp_obj_t mp_builtin_input(uint n_args, const mp_obj_t *args) { if (line == NULL) { nlr_raise(mp_obj_new_exception(&mp_type_EOFError)); } - mp_obj_t o = mp_obj_new_str((const byte*)line, strlen(line), false); + mp_obj_t o = mp_obj_new_str(line, strlen(line), false); free(line); return o; } |