Module: wine Branch: master Commit: 3f90cb8c9e9c542faa5a8535dbea192b21aeb425 URL: http://source.winehq.org/git/wine.git/?a=commit;h=3f90cb8c9e9c542faa5a8535db...
Author: André Hentschel nerv@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);