summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkstailey <kstailey@cvs.openbsd.org>1997-06-18 18:37:57 +0000
committerkstailey <kstailey@cvs.openbsd.org>1997-06-18 18:37:57 +0000
commit38f65af24a911b73ca3dfc7bc295c802af641639 (patch)
tree6a0199f98bba04f5b325666f7bf35bc60121d225
parent1b65aa0cebe95a4104d13ee5baba98983a4f4805 (diff)
(foo *)NULL -> NULL
-rw-r--r--bin/cat/cat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/cat/cat.c b/bin/cat/cat.c
index 12452ecf096..67e16c0269b 100644
--- a/bin/cat/cat.c
+++ b/bin/cat/cat.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cat.c,v 1.7 1996/12/14 12:17:33 mickey Exp $ */
+/* $OpenBSD: cat.c,v 1.8 1997/06/18 18:37:56 kstailey Exp $ */
/* $NetBSD: cat.c,v 1.11 1995/09/07 06:12:54 jtc Exp $ */
/*
@@ -47,7 +47,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)cat.c 8.2 (Berkeley) 4/27/95";
#else
-static char rcsid[] = "$OpenBSD: cat.c,v 1.7 1996/12/14 12:17:33 mickey Exp $";
+static char rcsid[] = "$OpenBSD: cat.c,v 1.8 1997/06/18 18:37:56 kstailey Exp $";
#endif
#endif /* not lint */
@@ -101,7 +101,7 @@ main(argc, argv)
tflag = vflag = 1; /* -t implies -v */
break;
case 'u':
- setbuf(stdout, (char *)NULL);
+ setbuf(stdout, NULL);
break;
case 'v':
vflag = 1;