summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro F. Giffuni <pfg@FreeBSD.org>2015-02-20 20:27:53 +0000
committerPedro F. Giffuni <pfg@FreeBSD.org>2015-02-20 20:27:53 +0000
commit0b7361b3e31a22df24773d09eb064a30f95b1a03 (patch)
treee4c47507f9f8e157b1f9556f9f2e12be908b2201
parentb687b02ffc2f7e9c97e058eb575a9dbc2e1a0b49 (diff)
Notes
-rw-r--r--lib/libc/gen/setmode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/gen/setmode.c b/lib/libc/gen/setmode.c
index 3966fd0e60a72..ffa20fd4c697e 100644
--- a/lib/libc/gen/setmode.c
+++ b/lib/libc/gen/setmode.c
@@ -186,10 +186,10 @@ setmode(const char *p)
* as best we can.
*/
sigfillset(&sigset);
- (void)_sigprocmask(SIG_BLOCK, &sigset, &sigoset);
+ (void)_sigprocmask(SIG_BLOCK, &sigset, &sigoset);
(void)umask(mask = umask(0));
mask = ~mask;
- (void)_sigprocmask(SIG_SETMASK, &sigoset, NULL);
+ (void)_sigprocmask(SIG_SETMASK, &sigoset, NULL);
setlen = SET_LEN + 2;