From 3f90cb8c9e9c542faa5a8535dbea192b21aeb425 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Hentschel?= Date: Wed, 30 Nov 2011 01:13:22 +0100 Subject: [PATCH] ntdll: Move a return out of a #ifdef. --- dlls/ntdll/signal_sparc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ntdll/signal_sparc.c b/dlls/ntdll/signal_sparc.c index ac9ee9c7d38..798397dfae6 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); -- 2.11.4.GIT