diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-06-18 18:48:28 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-06-18 18:48:28 +0000 |
commit | 7849f4173c812a06de1ebb00821d131dd27194bd (patch) | |
tree | d8cdac6f0ea4f5410ee26efac27f818402285093 /bin/pax/ar_io.c | |
parent | 9476fed6bf04f2d8ea8f3f58bfa415d0c3e32464 (diff) |
(foo *)NULL -> NULL
Diffstat (limited to 'bin/pax/ar_io.c')
-rw-r--r-- | bin/pax/ar_io.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/pax/ar_io.c b/bin/pax/ar_io.c index 97b91a61510..a7c886122d0 100644 --- a/bin/pax/ar_io.c +++ b/bin/pax/ar_io.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ar_io.c,v 1.13 1997/03/25 09:30:19 millert Exp $ */ +/* $OpenBSD: ar_io.c,v 1.14 1997/06/18 18:48:23 kstailey Exp $ */ /* $NetBSD: ar_io.c,v 1.5 1996/03/26 23:54:13 mrg Exp $ */ /*- @@ -42,7 +42,7 @@ #if 0 static char sccsid[] = "@(#)ar_io.c 8.2 (Berkeley) 4/18/94"; #else -static char rcsid[] = "$OpenBSD: ar_io.c,v 1.13 1997/03/25 09:30:19 millert Exp $"; +static char rcsid[] = "$OpenBSD: ar_io.c,v 1.14 1997/06/18 18:48:23 kstailey Exp $"; #endif #endif /* not lint */ @@ -1183,7 +1183,7 @@ ar_next() if (sigprocmask(SIG_BLOCK, &s_mask, &o_mask) < 0) syswarn(0, errno, "Unable to set signal mask"); ar_close(); - if (sigprocmask(SIG_SETMASK, &o_mask, (sigset_t *)NULL) < 0) + if (sigprocmask(SIG_SETMASK, &o_mask, NULL) < 0) syswarn(0, errno, "Unable to restore signal mask"); if (done || !wr_trail || strcmp(NM_TAR, argv0) == 0) |