From bb66306f2980d3b189c751cc5069a4303e38cabe Mon Sep 17 00:00:00 2001 From: kstailey Date: Wed, 18 Jun 1997 19:15:53 +0000 Subject: (foo *)NULL -> NULL --- bin/sh/parser.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bin/sh/parser.c') diff --git a/bin/sh/parser.c b/bin/sh/parser.c index 04eabad0f17..2224c13712e 100644 --- a/bin/sh/parser.c +++ b/bin/sh/parser.c @@ -1,4 +1,4 @@ -/* $OpenBSD: parser.c,v 1.7 1996/12/14 12:18:23 mickey Exp $ */ +/* $OpenBSD: parser.c,v 1.8 1997/06/18 19:15:51 kstailey Exp $ */ /* $NetBSD: parser.c,v 1.31 1996/11/25 20:22:00 christos Exp $ */ /*- @@ -41,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)parser.c 8.7 (Berkeley) 5/16/95"; #else -static char rcsid[] = "$OpenBSD: parser.c,v 1.7 1996/12/14 12:18:23 mickey Exp $"; +static char rcsid[] = "$OpenBSD: parser.c,v 1.8 1997/06/18 19:15:51 kstailey Exp $"; #endif #endif /* not lint */ @@ -842,7 +842,7 @@ xxreadtoken() { } } breakloop: - return readtoken1(c, BASESYNTAX, (char *)NULL, 0); + return readtoken1(c, BASESYNTAX, NULL, 0); #undef RETURN } @@ -1500,7 +1500,7 @@ synerror(msg) if (commandname) outfmt(&errout, "%s: %d: ", commandname, startlinno); outfmt(&errout, "Syntax error: %s\n", msg); - error((char *)NULL); + error(NULL); } STATIC void -- cgit v1.2.3