summaryrefslogtreecommitdiff
path: root/usr.bin/ar/delete.c
diff options
context:
space:
mode:
authorkstailey <kstailey@cvs.openbsd.org>1997-06-17 20:48:05 +0000
committerkstailey <kstailey@cvs.openbsd.org>1997-06-17 20:48:05 +0000
commit12c6fc8a48b870b0403310357336ce7012a0449a (patch)
treeb9818769cee054eb86db91d16e0918e5e71e2db5 /usr.bin/ar/delete.c
parentefe29ad509b05a25aab2d8e78467139ec72dd63b (diff)
(foo *)NULL -> NULL
Diffstat (limited to 'usr.bin/ar/delete.c')
-rw-r--r--usr.bin/ar/delete.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ar/delete.c b/usr.bin/ar/delete.c
index b138dacbab0..ed9034b6978 100644
--- a/usr.bin/ar/delete.c
+++ b/usr.bin/ar/delete.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: delete.c,v 1.2 1996/06/26 05:31:19 deraadt Exp $ */
+/* $OpenBSD: delete.c,v 1.3 1997/06/17 20:47:09 kstailey Exp $ */
/* $NetBSD: delete.c,v 1.5 1995/03/26 03:27:52 glass Exp $ */
/*-
@@ -41,7 +41,7 @@
#if 0
static char sccsid[] = "@(#)delete.c 8.3 (Berkeley) 4/2/94";
#else
-static char rcsid[] = "$OpenBSD: delete.c,v 1.2 1996/06/26 05:31:19 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: delete.c,v 1.3 1997/06/17 20:47:09 kstailey Exp $";
#endif
#endif /* not lint */
@@ -83,7 +83,7 @@ delete(argv)
skip_arobj(afd);
continue;
}
- put_arobj(&cf, (struct stat *)NULL);
+ put_arobj(&cf, NULL);
}
size = lseek(tfd, (off_t)0, SEEK_CUR);