diff options
| author | Paul Sokolovsky | 2017-01-20 23:58:42 +0300 |
|---|---|---|
| committer | Paul Sokolovsky | 2017-01-20 23:58:42 +0300 |
| commit | 58722103e10fa53e502febf8684c741171416179 (patch) | |
| tree | ee2882703d2fa25116fe9ffe47346903b95b4a17 | |
| parent | 1639200e5700b1170a9d2312a32c7991ed5198b4 (diff) | |
zephyr/help: Update n_args param type to size_t.
| -rw-r--r-- | zephyr/help.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zephyr/help.c b/zephyr/help.c index e574adf47..e40a11781 100644 --- a/zephyr/help.c +++ b/zephyr/help.c @@ -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); |
