diff options
Diffstat (limited to 'py/builtinevex.c')
-rw-r--r-- | py/builtinevex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/builtinevex.c b/py/builtinevex.c index 3b7fb16f87..6faeb6a071 100644 --- a/py/builtinevex.c +++ b/py/builtinevex.c @@ -41,7 +41,7 @@ #include "builtin.h" STATIC mp_obj_t parse_compile_execute(mp_obj_t o_in, mp_parse_input_kind_t parse_input_kind) { - uint str_len; + mp_uint_t str_len; const char *str = mp_obj_str_get_data(o_in, &str_len); // create the lexer |