diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-06-25 18:40:44 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-06-25 18:40:44 +0000 |
commit | 29afff72fde3b5fe833b2781b309cfd00405f388 (patch) | |
tree | 6f918c6228dd6180f0b00eed3c5bc804a324f38b /sbin/fsck_ext2fs/main.c | |
parent | bc093f09514e328edb0a0b04a0cd141d32d26d17 (diff) |
(foo *)0 -> NULL
Diffstat (limited to 'sbin/fsck_ext2fs/main.c')
-rw-r--r-- | sbin/fsck_ext2fs/main.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sbin/fsck_ext2fs/main.c b/sbin/fsck_ext2fs/main.c index b7e7386eb7f..9376f649e68 100644 --- a/sbin/fsck_ext2fs/main.c +++ b/sbin/fsck_ext2fs/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.3 1997/06/14 04:16:53 downsj Exp $ */ +/* $OpenBSD: main.c,v 1.4 1997/06/25 18:40:42 kstailey Exp $ */ /* $NetBSD: main.c,v 1.1 1997/06/11 11:21:50 bouyer Exp $ */ /* @@ -48,7 +48,7 @@ static char sccsid[] = "@(#)main.c 8.2 (Berkeley) 1/23/94"; #if 0 static char rcsid[] = "$NetBSD: main.c,v 1.1 1997/06/11 11:21:50 bouyer Exp $"; #else -static char rcsid[] = "$OpenBSD: main.c,v 1.3 1997/06/14 04:16:53 downsj Exp $"; +static char rcsid[] = "$OpenBSD: main.c,v 1.4 1997/06/25 18:40:42 kstailey Exp $"; #endif #endif #endif /* not lint */ @@ -288,9 +288,9 @@ checkfilesys(filesys, mntpt, auxdata, child) printf("\n"); } } - zlnhead = (struct zlncnt *)0; - duplist = (struct dups *)0; - muldup = (struct dups *)0; + zlnhead = NULL; + duplist = NULL; + muldup = NULL; inocleanup(); if (fsmodified) { time_t t; |