diff options
| author | Damien George | 2014-07-03 13:47:47 +0100 |
|---|---|---|
| committer | Damien George | 2014-07-03 13:47:47 +0100 |
| commit | 54eb4e723e2a3e990791da4acc816574efdebde6 (patch) | |
| tree | b425c00a9c2bd87a27e15de6452bc633973f7545 /teensy | |
| parent | 40f3c026823f8951a2fa04e9c7fc93c75bc27bec (diff) | |
lexer: Convert type (u)int to mp_(u)int_t.
Diffstat (limited to 'teensy')
| -rw-r--r-- | teensy/lexermemzip.c | 2 |
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); } |
