@@ -32,20 +32,20 @@ #endif static OFTLSKey threadKey; OF_CONSTRUCTOR() { - OF_ENSURE(OFTLSKeyNew(&threadKey) == 0); + OFEnsure(OFTLSKeyNew(&threadKey) == 0); } static void functionWrapper(void) { bool detached = false; OFPlainThread thread = (OFPlainThread)((struct Process *)FindTask(NULL))->pr_ExitData; - OF_ENSURE(OFTLSKeySet(threadKey, thread) == 0); + OFEnsure(OFTLSKeySet(threadKey, thread) == 0); thread->function(thread->object); ObtainSemaphore(&thread->semaphore); @try {