diff options
author | Damien George <damien.p.george@gmail.com> | 2015-03-14 23:09:57 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-03-14 23:09:57 +0000 |
commit | 836e46976f27a6a0fbbbf0a28e50c27d4b3fc725 (patch) | |
tree | 620a304e287978ced708b240ac7a895588eee803 /py/pfenv_printf.c | |
parent | f256cfef4f67c0a79141194b0a28dfa2a21b1110 (diff) | |
download | micropython-836e46976f27a6a0fbbbf0a28e50c27d4b3fc725.tar.gz micropython-836e46976f27a6a0fbbbf0a28e50c27d4b3fc725.zip |
py: In pfenv_vprintf, adjust type from mp_uint_t to unsigned int.
Diffstat (limited to 'py/pfenv_printf.c')
-rw-r--r-- | py/pfenv_printf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/pfenv_printf.c b/py/pfenv_printf.c index d4c5fc9df5..599700edcf 100644 --- a/py/pfenv_printf.c +++ b/py/pfenv_printf.c @@ -148,7 +148,7 @@ int pfenv_vprintf(const pfenv_t *pfenv, const char *fmt, va_list args) { break; case 'p': case 'P': // don't bother to handle upcase for 'P' - chrs += pfenv_print_int(pfenv, va_arg(args, mp_uint_t), 0, 16, 'a', flags, fill, width); + chrs += pfenv_print_int(pfenv, va_arg(args, unsigned int), 0, 16, 'a', flags, fill, width); break; #if MICROPY_PY_BUILTINS_FLOAT case 'e': |