From e4819f2b5cf68fb0213365f553a030fbb83eb302 Mon Sep 17 00:00:00 2001 From: rdb Date: Wed, 1 Apr 2020 18:55:06 +0200 Subject: [PATCH] pipeline: fix compilation error on Windows with simple threading --- panda/src/pipeline/contextSwitch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/pipeline/contextSwitch.c b/panda/src/pipeline/contextSwitch.c index c4d32e2456..3a78fefaa2 100644 --- a/panda/src/pipeline/contextSwitch.c +++ b/panda/src/pipeline/contextSwitch.c @@ -23,7 +23,7 @@ using OS-provided threading constructs. This is via either Windows or Posix threads. */ -#if defined(WIN32) && defined(OS_SIMPLE_THREADS) +#if defined(_WIN32) && defined(OS_SIMPLE_THREADS) #include "contextSwitch_windows_src.c"