diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-06-18 20:06:31 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-06-18 20:06:31 +0000 |
commit | 6705b500f6f4f634bc6b4ed3ca8b295848b9d699 (patch) | |
tree | d955ab8899d24ec758044f81dac06aa59767f5d9 /bin | |
parent | 055d56d65e6cfd4ecb1b3ce7a9dfe39aa96406ec (diff) |
(foo *)0 -> NULL
Diffstat (limited to 'bin')
-rw-r--r-- | bin/pax/options.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/pax/options.c b/bin/pax/options.c index 4ad7e9e7ccd..b096011f68b 100644 --- a/bin/pax/options.c +++ b/bin/pax/options.c @@ -1,4 +1,4 @@ -/* $OpenBSD: options.c,v 1.26 1997/06/18 18:48:26 kstailey Exp $ */ +/* $OpenBSD: options.c,v 1.27 1997/06/18 20:06:30 kstailey Exp $ */ /* $NetBSD: options.c,v 1.6 1996/03/26 23:54:18 mrg Exp $ */ /*- @@ -42,7 +42,7 @@ #if 0 static char sccsid[] = "@(#)options.c 8.2 (Berkeley) 4/18/94"; #else -static char rcsid[] = "$OpenBSD: options.c,v 1.26 1997/06/18 18:48:26 kstailey Exp $"; +static char rcsid[] = "$OpenBSD: options.c,v 1.27 1997/06/18 20:06:30 kstailey Exp $"; #endif #endif /* not lint */ @@ -646,7 +646,7 @@ tar_options(argc, argv) * treat a - as stdin */ fstdin = 1; - arcname = (char *)0; + arcname = NULL; break; } fstdin = 0; |