diff options
author | Damien George <damien.p.george@gmail.com> | 2014-08-30 14:59:21 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-08-30 14:59:21 +0100 |
commit | 4abff7500fb05430a2ce952a2430d4d0ba16047e (patch) | |
tree | b88ab89a41da9d9d71ad95157a4cf9bbaffb11e6 /py/modstruct.c | |
parent | 4d91723587b27c5a1da7e759e3f761a16b35d4bd (diff) | |
download | micropython-4abff7500fb05430a2ce952a2430d4d0ba16047e.tar.gz micropython-4abff7500fb05430a2ce952a2430d4d0ba16047e.zip |
py: Change uint to mp_uint_t in runtime.h, stackctrl.h, binary.h.
Part of code cleanup, working towards resolving issue #50.
Diffstat (limited to 'py/modstruct.c')
-rw-r--r-- | py/modstruct.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/modstruct.c b/py/modstruct.c index 61da283da5..8d44006381 100644 --- a/py/modstruct.c +++ b/py/modstruct.c @@ -101,7 +101,7 @@ STATIC mp_obj_t struct_calcsize(mp_obj_t fmt_in) { char fmt_type = get_fmt_type(&fmt); mp_uint_t size; for (size = 0; *fmt; fmt++) { - uint align = 1; + mp_uint_t align = 1; mp_uint_t cnt = 1; if (unichar_isdigit(*fmt)) { cnt = get_fmt_num(&fmt); |