summaryrefslogtreecommitdiffstatshomepage
path: root/py/builtinhelp.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2018-05-02 16:50:28 +1000
committerDamien George <damien.p.george@gmail.com>2018-05-02 16:50:28 +1000
commit60db80920a1eac962e43991fcffafd16edd11885 (patch)
tree3dcc8d6da845635da009b1174ddb47e13505b376 /py/builtinhelp.c
parent6410e174c532395e9309300f550ced0942070040 (diff)
downloadmicropython-60db80920a1eac962e43991fcffafd16edd11885.tar.gz
micropython-60db80920a1eac962e43991fcffafd16edd11885.zip
py/builtinhelp: Change occurrence of mp_uint_t to size_t.
Diffstat (limited to 'py/builtinhelp.c')
-rw-r--r--py/builtinhelp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/builtinhelp.c b/py/builtinhelp.c
index 7106f3cedd..6c2c3b92c0 100644
--- a/py/builtinhelp.c
+++ b/py/builtinhelp.c
@@ -100,7 +100,7 @@ STATIC void mp_help_print_modules(void) {
// print the list of modules in a column-first order
#define NUM_COLUMNS (4)
#define COLUMN_WIDTH (18)
- mp_uint_t len;
+ size_t len;
mp_obj_t *items;
mp_obj_list_get(list, &len, &items);
unsigned int num_rows = (len + NUM_COLUMNS - 1) / NUM_COLUMNS;