(svn r13411) -Codechange: remove the return value from the thread procs because it is never used.
This commit is contained in:
@@ -109,7 +109,7 @@ private:
|
||||
/**
|
||||
* First function which is called within the fiber.
|
||||
*/
|
||||
static void * CDECL stFiberProc(void *fiber)
|
||||
static void stFiberProc(void *fiber)
|
||||
{
|
||||
Fiber_Thread *cur = (Fiber_Thread *)fiber;
|
||||
/* Now suspend the thread until we get SwitchToFiber() for the first time */
|
||||
@@ -124,8 +124,6 @@ private:
|
||||
s_main->m_sem->Set();
|
||||
throw;
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user