From 63a381a882b08f8430f03c82bd008475d57ed749 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 14 Dec 2025 19:07:50 -0600 Subject: [PATCH] Fix macOS build --- app/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.cpp b/app/main.cpp index c2750a6c..22d2bc10 100644 --- a/app/main.cpp +++ b/app/main.cpp @@ -376,7 +376,7 @@ int SDLCALL signalHandlerThread(void* data) void configureSignalHandlers() { - if (socketpair(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0, signalFds) == -1) { + if (socketpair(AF_UNIX, SOCK_STREAM, 0, signalFds) == -1) { SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "socketpair() failed: %d", errno);