summaryrefslogtreecommitdiff
path: root/bin/pdksh/c_ulimit.c
diff options
context:
space:
mode:
authorkstailey <kstailey@cvs.openbsd.org>1997-06-18 22:42:50 +0000
committerkstailey <kstailey@cvs.openbsd.org>1997-06-18 22:42:50 +0000
commitc8708ed93617f5d278f4f7faf294a6e7c57227df (patch)
tree83832809b6ff198d789d720827ee338c50df8b37 /bin/pdksh/c_ulimit.c
parente37d7f641aedb36d7e29530bb5d9c2fe398d1407 (diff)
(foo *)0 -> NULL
Diffstat (limited to 'bin/pdksh/c_ulimit.c')
-rw-r--r--bin/pdksh/c_ulimit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/pdksh/c_ulimit.c b/bin/pdksh/c_ulimit.c
index 040eaccb409..31acaea78c1 100644
--- a/bin/pdksh/c_ulimit.c
+++ b/bin/pdksh/c_ulimit.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: c_ulimit.c,v 1.1 1996/08/14 06:19:10 downsj Exp $ */
+/* $OpenBSD: c_ulimit.c,v 1.2 1997/06/18 22:42:30 kstailey Exp $ */
/*
ulimit -- handle "ulimit" builtin
@@ -107,7 +107,7 @@ c_ulimit(wp)
#ifdef RLIMIT_SWAP
{ "swap(kbytes)", RLIMIT_SWAP, RLIMIT_SWAP, 1024, 'w' },
#endif
- { (char *) 0 }
+ { NULL }
};
static char options[3 + NELEM(limits)];
rlim_t UNINITIALIZED(val);