From 306cf112c2f38cdade47f241e572a22ec60e990e Mon Sep 17 00:00:00 2001 From: Souriya Trinh Date: Sat, 22 Jun 2024 23:06:43 +0200 Subject: [PATCH] Fix WIN32 typo. --- common/workerpool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/workerpool.c b/common/workerpool.c index 359abfef..cc398084 100644 --- a/common/workerpool.c +++ b/common/workerpool.c @@ -198,7 +198,7 @@ void workerpool_run(workerpool_t *wp) int workerpool_get_nprocs() { -#ifdef WIN32 +#ifdef _WIN32 SYSTEM_INFO sysinfo; GetSystemInfo(&sysinfo); return sysinfo.dwNumberOfProcessors;