pipeline: fix compilation error on Windows with simple threading

This commit is contained in:
rdb 2020-04-01 18:55:06 +02:00
parent 30d9f88f8e
commit e4819f2b5c

View File

@ -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"