diff -r 67db0d431d5e -r d8811e327d12 src/fiber_thread.cpp --- a/src/fiber_thread.cpp Tue May 27 00:50:55 2008 +0000 +++ b/src/fiber_thread.cpp Tue Jun 17 10:32:49 2008 +0000 @@ -109,7 +109,7 @@ /** * 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 @@ s_main->m_sem->Set(); throw; } - - return NULL; } };