diff options
author | Damien George <damien.p.george@gmail.com> | 2014-10-03 19:52:22 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-10-03 19:52:22 +0100 |
commit | 39dc1454788d1c6fb06c79871c7cd6e12aeb50a0 (patch) | |
tree | 12cb09a1c24b932ca7bbf715a662e78c838e1bf9 /py/emitnative.c | |
parent | 3eaa0c383317f05b678422f88546ecf21ea4f9bb (diff) | |
download | micropython-39dc1454788d1c6fb06c79871c7cd6e12aeb50a0.tar.gz micropython-39dc1454788d1c6fb06c79871c7cd6e12aeb50a0.zip |
py: Change [u]int to mp_[u]int_t in qstr.[ch], and some other places.
This should pretty much resolve issue #50.
Diffstat (limited to 'py/emitnative.c')
-rw-r--r-- | py/emitnative.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/emitnative.c b/py/emitnative.c index 504f686bd3..5d3e0f222e 100644 --- a/py/emitnative.c +++ b/py/emitnative.c @@ -1075,7 +1075,7 @@ STATIC void emit_native_import_star(emit_t *emit) { STATIC void emit_native_load_const_tok(emit_t *emit, mp_token_kind_t tok) { DEBUG_printf("load_const_tok(tok=%u)\n", tok); emit_native_pre(emit); - int vtype; + vtype_kind_t vtype; mp_uint_t val; if (emit->do_viper_types) { switch (tok) { |