From cc66540e0edd8c62bd6cb53d5a58081310147b38 Mon Sep 17 00:00:00 2001 From: Jacques Vidrine Date: Tue, 5 Jun 2001 21:55:57 +0000 Subject: [PATCH] Add parens to get the cast that was meant in previous commit. While we're at it, this file seems to prefer `unsigned int' over `u_int', so go with that. --- bin/df/df.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/df/df.c b/bin/df/df.c index 27f0fd7255f7..3cec5ddcbd74 100644 --- a/bin/df/df.c +++ b/bin/df/df.c @@ -527,8 +527,8 @@ char *makenetvfslist() mib[0] = CTL_VFS; mib[1] = VFS_GENERIC; mib[2] = VFS_MAXTYPENUM; miblen=sizeof(maxvfsconf); - if (sysctl(mib, (u_int) sizeof (mib) / sizeof(mib[0]), &maxvfsconf, - &miblen, NULL, 0)) { + if (sysctl(mib, (unsigned int)(sizeof(mib) / sizeof(mib[0])), + &maxvfsconf, &miblen, NULL, 0)) { warnx("sysctl failed"); return (NULL); }