From ec1ea466fd6fe65e4934a4343bbcd9685ee08274 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Wed, 23 Oct 2019 13:11:32 +0300 Subject: [PATCH] atomic.hpp: fix typo --- rpcs3/util/atomic.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/util/atomic.cpp b/rpcs3/util/atomic.cpp index 91ae038420..5bc1a8a815 100644 --- a/rpcs3/util/atomic.cpp +++ b/rpcs3/util/atomic.cpp @@ -274,7 +274,7 @@ static u32 sema_alloc() #ifdef USE_POSIX // Initialize semaphore (should be very fast) sem_init(&s_sema_list[id], 0, 0); -#elif defined(_WIN32) | defined(USE_FUTEX) +#elif defined(_WIN32) || defined(USE_FUTEX) // Do nothing #else if (!s_sema_list[id])