ntdll: Move a return out of a #ifdef.

This commit is contained in:
André Hentschel 2011-11-30 01:13:22 +01:00 committed by Alexandre Julliard
parent fca621f20b
commit 3f90cb8c9e
1 changed files with 1 additions and 1 deletions

View File

@ -818,9 +818,9 @@ void signal_init_process(void)
this is correct, because that is what x86 does, or it is harmful this is correct, because that is what x86 does, or it is harmful
because it could obscure problems in user code */ because it could obscure problems in user code */
__asm__("ta 6"); /* 6 == ST_FIX_ALIGN defined in sys/trap.h */ __asm__("ta 6"); /* 6 == ST_FIX_ALIGN defined in sys/trap.h */
return;
#endif #endif
return;
error: error:
perror("sigaction"); perror("sigaction");
exit(1); exit(1);