Skip to content

Commit 60db809

Browse files
committed
py/builtinhelp: Change occurrence of mp_uint_t to size_t.
1 parent 6410e17 commit 60db809

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

py/builtinhelp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ STATIC void mp_help_print_modules(void) {
100100
// print the list of modules in a column-first order
101101
#define NUM_COLUMNS (4)
102102
#define COLUMN_WIDTH (18)
103-
mp_uint_t len;
103+
size_t len;
104104
mp_obj_t *items;
105105
mp_obj_list_get(list, &len, &items);
106106
unsigned int num_rows = (len + NUM_COLUMNS - 1) / NUM_COLUMNS;

0 commit comments

Comments
 (0)