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

Alexandre Julliard julliard at wine.codeweavers.com
Thu Mar 15 08:19:15 CDT 2007


Module: wine
Branch: master
Commit: 42050fbf91460f6135e503a4bcaa2904eb74796b
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=42050fbf91460f6135e503a4bcaa2904eb74796b

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Wed Mar 14 15:02:22 2007 +0100

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

---

 dlls/ntdll/thread.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/ntdll/thread.c b/dlls/ntdll/thread.c
index d0871a1..1fb0db6 100644
--- a/dlls/ntdll/thread.c
+++ b/dlls/ntdll/thread.c
@@ -364,7 +364,7 @@ __ASM_GLOBAL_FUNC(call_thread_entry_point,
 #else
 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 );
 }
 #endif




More information about the wine-cvs mailing list