=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: ntdll: Move a return out of a #ifdef .

Alexandre Julliard julliard at winehq.org
Wed Nov 30 14:19:19 CST 2011


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

Author: André Hentschel <nerv at dawncrow.de>
Date:   Wed Nov 30 01:13:22 2011 +0100

ntdll: Move a return out of a #ifdef.

---

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

diff --git a/dlls/ntdll/signal_sparc.c b/dlls/ntdll/signal_sparc.c
index ac9ee9c..798397d 100644
--- a/dlls/ntdll/signal_sparc.c
+++ b/dlls/ntdll/signal_sparc.c
@@ -818,9 +818,9 @@ void signal_init_process(void)
        this is correct, because that is what x86 does, or it is harmful 
        because it could obscure problems in user code */
     __asm__("ta 6"); /* 6 == ST_FIX_ALIGN defined in sys/trap.h */
-    return;
 #endif
 
+    return;
  error:
     perror("sigaction");
     exit(1);




More information about the wine-cvs mailing list