ntdll: Move a return out of a #ifdef

André Hentschel nerv at dawncrow.de
Tue Nov 29 18:13:22 CST 2011


my fault
---
 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 7132432..9e3d3b4 100644
--- a/dlls/ntdll/signal_sparc.c
+++ b/dlls/ntdll/signal_sparc.c
@@ -835,9 +835,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);
-- 

Best Regards, André Hentschel



More information about the wine-patches mailing list