py/repl: Change mp_uint_t to size_t in repl helpers.

This commit is contained in:
Damien George
2017-07-04 23:44:54 +10:00
parent 7bd10c1ffe
commit e66fd56852
4 changed files with 14 additions and 14 deletions

View File

@@ -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__