From 8ad1a75f6979b4415c8cb771d8d972cdd4c75636 Mon Sep 17 00:00:00 2001 From: "Ben \"root\" Anderson" Date: Wed, 30 Oct 2013 00:13:07 -0500 Subject: [PATCH] elseif -> elif. Apparently I need to brush up on my CPP. --- src/arch/Threads/Threads_Pthreads.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arch/Threads/Threads_Pthreads.cpp b/src/arch/Threads/Threads_Pthreads.cpp index b382b5d864..01695726d3 100644 --- a/src/arch/Threads/Threads_Pthreads.cpp +++ b/src/arch/Threads/Threads_Pthreads.cpp @@ -208,7 +208,7 @@ MutexImpl *MakeMutex( RageMutex *pParent ) #if defined(UNIX) #include #include "arch/ArchHooks/ArchHooks_Unix.h" -#elseif defined(MACOSX) +#elif defined(MACOSX) typedef int clockid_t; static const clockid_t CLOCK_REALTIME = 0; static const clockid_t CLOCK_MONOTONIC = 1;