From: Bodo Stroesser Fix a typo in wait_stub_done. Signed-off-by: Bodo Stroesser --- diff -puN arch/um/os-Linux/skas/process.c~fix-wait_stub_done arch/um/os-Linux/skas/process.c --- linux-2.6.12-rc4/arch/um/os-Linux/skas/process.c~fix-wait_stub_done 2005-07-15 10:12:50.546041239 +0200 +++ linux-2.6.12-rc4-root/arch/um/os-Linux/skas/process.c 2005-07-15 10:13:23.735743112 +0200 @@ -64,7 +64,7 @@ void wait_stub_done(int pid, int sig, ch (WSTOPSIG(status) == SIGVTALRM)); if((n < 0) || !WIFSTOPPED(status) || - (WSTOPSIG(status) != SIGUSR1 && WSTOPSIG(status != SIGTRAP))){ + (WSTOPSIG(status) != SIGUSR1 && WSTOPSIG(status) != SIGTRAP)){ panic("%s : failed to wait for SIGUSR1/SIGTRAP, " "pid = %d, n = %d, errno = %d, status = 0x%x\n", fname, pid, n, errno, status); _