diff options
Diffstat (limited to 'esp8266/modpyb.c')
-rw-r--r-- | esp8266/modpyb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/esp8266/modpyb.c b/esp8266/modpyb.c index e977191ee..0a23f6f9d 100644 --- a/esp8266/modpyb.c +++ b/esp8266/modpyb.c @@ -35,7 +35,7 @@ // only remaining function is pyb.info() which has been moved to the // esp module, pending deletion/renaming/moving elsewhere. -STATIC mp_obj_t pyb_info(mp_uint_t n_args, const mp_obj_t *args) { +STATIC mp_obj_t pyb_info(size_t n_args, const mp_obj_t *args) { // print info about memory { printf("_text_start=%p\n", &_text_start); |