mirror of
https://github.com/reactos/reactos.git
synced 2025-04-19 04:07:16 +00:00
make gcc stop nag about uninitialized value in 114: and make -O3 working
svn path=/trunk/; revision=16063
This commit is contained in:
parent
dc337def98
commit
5e0373034a
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ void do_all_timers(void)
|
|||
// ReactOS Purpose: Create real kernel thread
|
||||
int my_kernel_thread(int STDCALL (*handler)(void*), void* parm, int flags)
|
||||
{
|
||||
HANDLE hThread;
|
||||
HANDLE hThread = NULL;
|
||||
//thread_handler=handler;
|
||||
//thread_parm=parm;
|
||||
//return 42; // PID :-)
|
||||
|
|
Loading…
Reference in a new issue