summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Lechner <david@lechnology.com>2020-03-21 17:25:44 -0500
committerDamien George <damien.p.george@gmail.com>2020-03-25 00:59:34 +1100
commitd0edaf88a3afbb5b701bc429bd4bead4a81fbf37 (patch)
tree795613d0e7b603b57fe632ef7e2a0ea421b73d9f
parent3b07736b6d4d6c8110e487b0001661f9251b5016 (diff)
windows/windows_mphal: Fix missing semicolon.
-rw-r--r--ports/windows/windows_mphal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/windows/windows_mphal.c b/ports/windows/windows_mphal.c
index 6ee37fdd2..e805e2ca8 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
}