diff options
author | Damien George <damien.p.george@gmail.com> | 2017-03-25 19:54:07 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-03-25 19:54:07 +1100 |
commit | 29424304d9837339d31e1c276ebd39df46c44eb9 (patch) | |
tree | 2f616f7b644352630dd362a1404d5a5c9a94693e /unix/modtermios.c | |
parent | ab5689bc9df27d481c08f8087bf6c4f12b881255 (diff) | |
download | micropython-29424304d9837339d31e1c276ebd39df46c44eb9.tar.gz micropython-29424304d9837339d31e1c276ebd39df46c44eb9.zip |
unix: Use mp_obj_str_get_str instead of mp_obj_str_get_data.
Diffstat (limited to 'unix/modtermios.c')
-rw-r--r-- | unix/modtermios.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/unix/modtermios.c b/unix/modtermios.c index 2cb5f26df5..5e82e772ac 100644 --- a/unix/modtermios.c +++ b/unix/modtermios.c @@ -90,8 +90,7 @@ STATIC mp_obj_t mod_termios_tcsetattr(mp_obj_t fd_in, mp_obj_t when_in, mp_obj_t if (i == VMIN || i == VTIME) { term.c_cc[i] = mp_obj_get_int(cc->items[i]); } else { - mp_uint_t len; - term.c_cc[i] = *mp_obj_str_get_data(cc->items[i], &len); + term.c_cc[i] = *mp_obj_str_get_str(cc->items[i]); } } |