diff options
author | markm <markm@FreeBSD.org> | 2004-03-05 08:10:19 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2004-03-05 08:10:19 +0000 |
commit | 0b0ae8e16e50fd60ad86f4f14ec05cfc50e7eae5 (patch) | |
tree | 524ae0ef30bcdfacb05b3c2b01e1c48e80d93e3b /sbin/atm | |
parent | f5816d0166177c6f98d32562b93f6cf287f9b4f5 (diff) | |
download | FreeBSD-src-0b0ae8e16e50fd60ad86f4f14ec05cfc50e7eae5.zip FreeBSD-src-0b0ae8e16e50fd60ad86f4f14ec05cfc50e7eae5.tar.gz |
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
Diffstat (limited to 'sbin/atm')
-rw-r--r-- | sbin/atm/atmconfig/diag.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/atm/atmconfig/diag.c b/sbin/atm/atmconfig/diag.c index 733c879..bd8bc7e 100644 --- a/sbin/atm/atmconfig/diag.c +++ b/sbin/atm/atmconfig/diag.c @@ -232,7 +232,7 @@ phy_fetch(const char *ifname, const char *var, void *val, size_t len, if (asprintf(&str, "hw.atm.%s.phy_%s", ifname, var) == -1) err(1, NULL); - if (sysctlbyname(str, val, &len, NULL, NULL) == -1) { + if (sysctlbyname(str, val, &len, NULL, 0) == -1) { if (err_fatal || errno != ENOENT) err(1, "%s", str); free(str); |