stmhal: Change type of received chr from char to int.

stackless
Damien George 2015-02-08 13:41:28 +00:00
parent f804833a97
commit 5351a48185
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ raw_repl_reset:
vstr_reset(&line);
stdout_tx_str(">");
for (;;) {
char c = stdin_rx_chr();
int c = stdin_rx_chr();
if (c == CHAR_CTRL_A) {
// reset raw REPL
goto raw_repl_reset;