summaryrefslogtreecommitdiff
path: root/esp8266/modpyb.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2017-08-30 10:59:58 +1000
committerDamien George <damien.p.george@gmail.com>2017-08-30 10:59:58 +1000
commit71c9cfb028d423bf4760d66b1afe8951335fa5da (patch)
tree83ce8ec7270f759f73911f5b45bede989872a9b5 /esp8266/modpyb.c
parent784909ce1655bf8b2a97ac81a3842e844992082f (diff)
all: Convert remaining "mp_uint_t n_args" to "size_t n_args".
This is to have consistency across the whole repository.
Diffstat (limited to 'esp8266/modpyb.c')
-rw-r--r--esp8266/modpyb.c2
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);