commit | d182b98a37bde34c06ae705624da03cf381eb4dc | [log] [tgz] |
---|---|---|
author | Damien George <damien.p.george@gmail.com> | Sat Aug 30 14:19:41 2014 +0100 |
committer | Damien George <damien.p.george@gmail.com> | Sat Aug 30 14:19:41 2014 +0100 |
tree | 0e7599a07d2c3ad17be2a3a708759c07e638a20d | |
parent | 9c4cbe2ac0ae4c51270f21ba9c974dd24f6b9d55 [diff] [blame] |
py: Change all uint to mp_uint_t in obj.h. Part of code cleanup, working towards resolving issue #50.
diff --git a/py/builtinevex.c b/py/builtinevex.c index 3b7fb16..6faeb6a 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