diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-06-18 18:39:39 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-06-18 18:39:39 +0000 |
commit | 9476fed6bf04f2d8ea8f3f58bfa415d0c3e32464 (patch) | |
tree | 75d40a346dca996c776de92f65c7091902ed66ac | |
parent | 38f65af24a911b73ca3dfc7bc295c802af641639 (diff) |
(foo *)NULL -> NULL
-rw-r--r-- | bin/csh/func.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/csh/func.c b/bin/csh/func.c index a3ea67116e3..5089e6d37a3 100644 --- a/bin/csh/func.c +++ b/bin/csh/func.c @@ -1,4 +1,4 @@ -/* $OpenBSD: func.c,v 1.3 1996/06/23 14:19:22 deraadt Exp $ */ +/* $OpenBSD: func.c,v 1.4 1997/06/18 18:39:38 kstailey Exp $ */ /* $NetBSD: func.c,v 1.11 1996/02/09 02:28:29 christos Exp $ */ /*- @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)func.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$OpenBSD: func.c,v 1.3 1996/06/23 14:19:22 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: func.c,v 1.4 1997/06/18 18:39:38 kstailey Exp $"; #endif #endif /* not lint */ @@ -1174,7 +1174,7 @@ findlim(cp) { register struct limits *lp, *res; - res = (struct limits *) NULL; + res = NULL; for (lp = limits; lp->limconst >= 0; lp++) if (prefix(cp, str2short(lp->limname))) { if (res) |