From d0edaf88a3afbb5b701bc429bd4bead4a81fbf37 Mon Sep 17 00:00:00 2001 From: David Lechner Date: Sat, 21 Mar 2020 17:25:44 -0500 Subject: [PATCH] windows/windows_mphal: Fix missing semicolon. --- ports/windows/windows_mphal.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ports/windows/windows_mphal.c b/ports/windows/windows_mphal.c index 6ee37fdd27..e805e2ca89 100644 --- a/ports/windows/windows_mphal.c +++ b/ports/windows/windows_mphal.c @@ -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 }