Commit 42050fbf authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll: Fixed typo in previous patch, spotted by Ken Thomases.

parent 9795e683
...@@ -364,7 +364,7 @@ __ASM_GLOBAL_FUNC(call_thread_entry_point, ...@@ -364,7 +364,7 @@ __ASM_GLOBAL_FUNC(call_thread_entry_point,
#else #else
static inline DWORD call_thread_entry_point( PRTL_THREAD_START_ROUTINE entry, void *arg ) static inline DWORD call_thread_entry_point( PRTL_THREAD_START_ROUTINE entry, void *arg )
{ {
LPTHREAD_START_ROUTINE func = (LPTHREAD_START_ROUTINE)rtl_func; LPTHREAD_START_ROUTINE func = (LPTHREAD_START_ROUTINE)entry;
return func( arg ); return func( arg );
} }
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment