aboutsummaryrefslogtreecommitdiff
path: root/teensy
diff options
context:
space:
mode:
authorDamien George2014-07-03 13:47:47 +0100
committerDamien George2014-07-03 13:47:47 +0100
commit54eb4e723e2a3e990791da4acc816574efdebde6 (patch)
treeb425c00a9c2bd87a27e15de6452bc633973f7545 /teensy
parent40f3c026823f8951a2fa04e9c7fc93c75bc27bec (diff)
lexer: Convert type (u)int to mp_(u)int_t.
Diffstat (limited to 'teensy')
-rw-r--r--teensy/lexermemzip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/teensy/lexermemzip.c b/teensy/lexermemzip.c
index f50a3c080..b74d2ebee 100644
--- a/teensy/lexermemzip.c
+++ b/teensy/lexermemzip.c
@@ -16,6 +16,6 @@ mp_lexer_t *mp_lexer_new_from_file(const char *filename)
return NULL;
}
- return mp_lexer_new_from_str_len(qstr_from_str(filename), (const char *)data, (uint)len, 0);
+ return mp_lexer_new_from_str_len(qstr_from_str(filename), (const char *)data, (mp_uint_t)len, 0);
}