8000 lib/utils/pyexec: qstr_pool_info() requires size_t* parameters. · danni/micropython@bae62d9 · GitHub
[go: up one dir, main page]

Skip to content

Commit bae62d9

Browse files
committed
lib/utils/pyexec: qstr_pool_info() requires size_t* parameters.
1 parent 76dcadd commit bae62d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/utils/pyexec.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ STATIC int parse_compile_execute(void *source, mp_parse_input_kind_t input_kind,
112112
printf("took " UINT_FMT " ms\n", ticks);
113113
// qstr info
114114
{
115-
mp_uint_t n_pool, n_qstr, n_str_data_bytes, n_total_bytes;
115+
size_t n_pool, n_qstr, n_str_data_bytes, n_total_bytes;
116116
qstr_pool_info(&n_pool, &n_qstr, &n_str_data_bytes, &n_total_bytes);
117117
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);
118118
}

0 commit comments

Comments
 (0)
0