Skip to content
Snippets Groups Projects
Commit 5351a481 authored by Damien George's avatar Damien George
Browse files

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

parent f804833a
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment