From ff4fec4611c9c51ab731911de12e7cc8d48dbd80 Mon Sep 17 00:00:00 2001 From: mcmartin Date: Tue, 23 Sep 2003 17:30:50 +0000 Subject: [PATCH] Fixed silly compile error when NAMED_SYNCHRO undefined git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1258 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/libs/threadlib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sc2/src/sc2code/libs/threadlib.h b/sc2/src/sc2code/libs/threadlib.h index d9a6f209d..9b83cff4c 100644 --- a/sc2/src/sc2code/libs/threadlib.h +++ b/sc2/src/sc2code/libs/threadlib.h @@ -115,7 +115,7 @@ CondVar CreateCondVar_Core (void); /* Preprocessor directives to forward to the appropriate routines. The "name" field is stripped away in preprocessing. */ -#define CreateThread(func, data, stackSize, name, syncClass) \ +#define CreateThread(func, data, stackSize, name) \ CreateThread_Core ((func), (data), (stackSize)) #define CreateSemaphore(initial, name, syncClass) \ CreateSemaphore_Core ((initial))