diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-08-30 00:58:42 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-08-30 00:58:42 +0300 |
commit | bae62d9abe3db0f60f681f79b684ec7e5fb25fda (patch) | |
tree | 464ff0f857d923bab609b680778770ecc9ae479f /lib/utils/pyexec.c | |
parent | 76dcaddc0f647bd597013980108b0b28bb6eb1c9 (diff) | |
download | micropython-bae62d9abe3db0f60f681f79b684ec7e5fb25fda.tar.gz micropython-bae62d9abe3db0f60f681f79b684ec7e5fb25fda.zip |
lib/utils/pyexec: qstr_pool_info() requires size_t* parameters.
Diffstat (limited to 'lib/utils/pyexec.c')
-rw-r--r-- | lib/utils/pyexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils/pyexec.c b/lib/utils/pyexec.c index 411ee969d6..2bc7a00cc0 100644 --- a/lib/utils/pyexec.c +++ b/lib/utils/pyexec.c @@ -112,7 +112,7 @@ STATIC int parse_compile_execute(void *source, mp_parse_input_kind_t input_kind, printf("took " UINT_FMT " ms\n", ticks); // qstr info { - mp_uint_t n_pool, n_qstr, n_str_data_bytes, n_total_bytes; + size_t n_pool, n_qstr, n_str_data_bytes, n_total_bytes; qstr_pool_info(&n_pool, &n_qstr, &n_str_data_bytes, &n_total_bytes); printf("qstr:\n n_pool=" UINT_FMT "\n n_qstr=" UINT_FMT "\n n_str_data_bytes=" UINT_FMT "\n n_total_bytes=" UINT_FMT "\n", n_pool, n_qstr, n_str_data_bytes, n_total_bytes); } |