Module: wine Branch: master Commit: 08ae56545e677988f254dab5ad4283cb412a112d URL: http://source.winehq.org/git/wine.git/?a=commit;h=08ae56545e677988f254dab5ad...
Author: Andrew Talbot andrew.talbot@talbotville.com Date: Mon Mar 31 21:41:19 2008 +0100
ntdll: Remove superfluous semicolon.
---
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 1115ca7..65283e0 100644 --- a/dlls/ntdll/thread.c +++ b/dlls/ntdll/thread.c @@ -356,7 +356,7 @@ __ASM_GLOBAL_FUNC(call_thread_entry_point, "movl 8(%ebp),%eax\n\t" "call *%eax\n\t" "leave\n\t" - "ret" ); + "ret" ) #else static inline DWORD call_thread_entry_point( PRTL_THREAD_START_ROUTINE entry, void *arg ) {