diff options
author | Damien George <damien.p.george@gmail.com> | 2017-07-04 23:44:54 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-07-04 23:44:54 +1000 |
commit | e66fd568520a22acbd452188f8ac8f38364c477c (patch) | |
tree | 0a4b59d0936fb33c60b5586dbd8253c42ed0e42e /py/repl.h | |
parent | 7bd10c1ffe54f9c1e3b63f8f372c024461b3a4ff (diff) |
py/repl: Change mp_uint_t to size_t in repl helpers.
Diffstat (limited to 'py/repl.h')
-rw-r--r-- | py/repl.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ #if MICROPY_HELPER_REPL bool mp_repl_continue_with_input(const char *input); -mp_uint_t mp_repl_autocomplete(const char *str, mp_uint_t len, const mp_print_t *print, const char **compl_str); +size_t mp_repl_autocomplete(const char *str, size_t len, const mp_print_t *print, const char **compl_str); #endif #endif // __MICROPY_INCLUDED_PY_REPL_H__ |