From 4c71be0efa5bd1f43359d0a86b43441a6dac2c77 Mon Sep 17 00:00:00 2001 From: crueter Date: Sun, 2 Nov 2025 00:41:36 -0400 Subject: [PATCH] I hate windows Signed-off-by: crueter --- src/common/thread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/thread.cpp b/src/common/thread.cpp index cbc2be3f8b..832232cd15 100644 --- a/src/common/thread.cpp +++ b/src/common/thread.cpp @@ -109,7 +109,7 @@ void SetCurrentThreadName(const char* name) { buf[len] = '\0'; pthread_setname_np(pthread_self(), buf); } -#elif defined(__MINGW64__) +#elif defined(_WIN32) // mingw stub (void)name; #else