diff options
Diffstat (limited to 'hurd/hurdkill.c')
-rw-r--r-- | hurd/hurdkill.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hurd/hurdkill.c b/hurd/hurdkill.c index 8b2743f0e9..cd67f9b9bd 100644 --- a/hurd/hurdkill.c +++ b/hurd/hurdkill.c @@ -40,8 +40,8 @@ _hurd_sig_post (pid_t pid, int sig, mach_port_t arg_refport) err = HURD_MSGPORT_RPC (__proc_getmsgport (proc, pid, &msgport), (refport = arg_refport, 0), 0, /* If no message port we cannot send signals. */ - msgport == MACH_PORT_NULL ? EPERM : - __msg_sig_post (msgport, sig, 0, refport)); + msgport == MACH_PORT_NULL ? EPERM + : __msg_sig_post (msgport, sig, 0, refport)); if (! err) delivered = 1; } |