mirror of
https://github.com/micropython/micropython.git
synced 2026-01-04 19:20:22 +01:00
windows/windows_mphal: Fix missing semicolon.
This commit is contained in:
committed by
Damien George
parent
3b07736b6d
commit
d0edaf88a3
@@ -199,8 +199,8 @@ int mp_hal_stdin_rx_chr(void) {
|
||||
INPUT_RECORD rec;
|
||||
for (;;) {
|
||||
MP_THREAD_GIL_EXIT();
|
||||
status = ReadConsoleInput(std_in, &rec, 1, &num_read)
|
||||
MP_THREAD_GIL_ENTER();
|
||||
status = ReadConsoleInput(std_in, &rec, 1, &num_read);
|
||||
MP_THREAD_GIL_ENTER();
|
||||
if (!status || !num_read) {
|
||||
return CHAR_CTRL_C; // EOF, ctrl-D
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user