From: Alan Cox Date: Sun, 25 Nov 2018 18:42:33 +0000 (+0000) Subject: syscall_proc: remove surplus semi-colon X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=bd308bb82604e77ad167d45733688bfa1a57f478;p=FUZIX.git syscall_proc: remove surplus semi-colon --- diff --git a/Kernel/syscall_proc.c b/Kernel/syscall_proc.c index 2f611321..de767664 100644 --- a/Kernel/syscall_proc.c +++ b/Kernel/syscall_proc.c @@ -482,7 +482,7 @@ arg_t _signal(void) if (sig != SIGKILL && sig != SIGSTOP) udata.u_sigvec[sig] = func; /* Force recalculation of signal pending in the syscall return path */ - recalc_cursig();; + recalc_cursig(); irqrestore(irq); return (retval);