Skip to content

Commit 5872210

Browse files
committed
zephyr/help: Update n_args param type to size_t.
1 parent 1639200 commit 5872210

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

zephyr/help.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ STATIC const char *help_text =
4141
"For further help on a specific object, type help(obj)\n"
4242
;
4343

44-
STATIC mp_obj_t builtin_help(uint n_args, const mp_obj_t *args) {
44+
STATIC mp_obj_t builtin_help(size_t n_args, const mp_obj_t *args) {
4545
if (n_args == 0) {
4646
// print a general help message
4747
printf("%s", help_text);

0 commit comments

Comments
 (0)