py: Cast argument for printf to int, to be compatible with more ports.
This allows stmhal to be compiled with MICROPY_DEBUG_PRINTERS.
This commit is contained in:
parent
a06c38b486
commit
7f19a39a3b
|
@ -772,7 +772,7 @@ void mp_lexer_show_token(const mp_lexer_t *lex) {
|
||||||
unichar c = utf8_get_char(i);
|
unichar c = utf8_get_char(i);
|
||||||
i = utf8_next_char(i);
|
i = utf8_next_char(i);
|
||||||
if (unichar_isprint(c)) {
|
if (unichar_isprint(c)) {
|
||||||
printf("%c", c);
|
printf("%c", (int)c);
|
||||||
} else {
|
} else {
|
||||||
printf("?");
|
printf("?");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue