zephyr/help: Update n_args param type to size_t.

This commit is contained in:
Paul Sokolovsky 2017-01-20 23:58:42 +03:00
parent 1639200e57
commit 58722103e1
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ STATIC const char *help_text =
"For further help on a specific object, type help(obj)\n"
;
STATIC mp_obj_t builtin_help(uint n_args, const mp_obj_t *args) {
STATIC mp_obj_t builtin_help(size_t n_args, const mp_obj_t *args) {
if (n_args == 0) {
// print a general help message
printf("%s", help_text);