aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/pstat/pstat.c
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>2004-03-05 08:10:19 +0000
committerMark Murray <markm@FreeBSD.org>2004-03-05 08:10:19 +0000
commit16fc3635f7aec3852abfc6dd77f89baef91f22fa (patch)
tree524ae0ef30bcdfacb05b3c2b01e1c48e80d93e3b /usr.sbin/pstat/pstat.c
parent5af2e7de06321c8f6aaa876fa79bf08870e8911c (diff)
downloadsrc-16fc3635f7aec3852abfc6dd77f89baef91f22fa.tar.gz
src-16fc3635f7aec3852abfc6dd77f89baef91f22fa.zip
Make NULL a (void*)0 whereever possible, and fix the warnings(-Werror)
that this provokes. "Wherever possible" means "In the kernel OR NOT C++" (implying C). There are places where (void *) pointers are not valid, such as for function pointers, but in the special case of (void *)0, agreement settles on it being OK. Most of the fixes were NULL where an integer zero was needed; many of the fixes were NULL where ascii <nul> ('\0') was needed, and a few were just "other". Tested on: i386 sparc64
Notes
Notes: svn path=/head/; revision=126643
Diffstat (limited to 'usr.sbin/pstat/pstat.c')
-rw-r--r--usr.sbin/pstat/pstat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/pstat/pstat.c b/usr.sbin/pstat/pstat.c
index 4a8f7a1955d3..d93e76c14061 100644
--- a/usr.sbin/pstat/pstat.c
+++ b/usr.sbin/pstat/pstat.c
@@ -563,7 +563,7 @@ swapmode_sysctl(void)
for (n = 0; ; ++n) {
mib[mibsize] = n;
size = sizeof xsw;
- if (sysctl(mib, mibsize + 1, &xsw, &size, NULL, NULL) == -1)
+ if (sysctl(mib, mibsize + 1, &xsw, &size, NULL, 0) == -1)
break;
if (xsw.xsw_version != XSWDEV_VERSION)
errx(1, "xswdev version mismatch");