make gcc stop nag about uninitialized value in 114: and make -O3 working

svn path=/trunk/; revision=16063
This commit is contained in:
Magnus Olsen 2005-06-18 21:55:59 +00:00
parent dc337def98
commit 5e0373034a

View file

@ -111,7 +111,7 @@ void do_all_timers(void)
// ReactOS Purpose: Create real kernel thread // ReactOS Purpose: Create real kernel thread
int my_kernel_thread(int STDCALL (*handler)(void*), void* parm, int flags) int my_kernel_thread(int STDCALL (*handler)(void*), void* parm, int flags)
{ {
HANDLE hThread; HANDLE hThread = NULL;
//thread_handler=handler; //thread_handler=handler;
//thread_parm=parm; //thread_parm=parm;
//return 42; // PID :-) //return 42; // PID :-)