From df28a8dc3fec9d5d571761dc7ff313578dd64e3d Mon Sep 17 00:00:00 2001 From: dragonmux Date: Fri, 29 Dec 2023 22:44:26 +0000 Subject: [PATCH] hosted/rtt_if: Fixed the Windows guard as it used the wrong identifier --- src/platforms/hosted/rtt_if.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platforms/hosted/rtt_if.c b/src/platforms/hosted/rtt_if.c index e589280b6da..2fa9ad10b35 100644 --- a/src/platforms/hosted/rtt_if.c +++ b/src/platforms/hosted/rtt_if.c @@ -31,7 +31,7 @@ /* maybe rewrite this as tcp server */ -#ifndef WIN32 +#ifndef _WIN32 #include typedef struct termios terminal_io_state_s;