summaryrefslogtreecommitdiffstats
path: root/sbin/kldconfig
diff options
context:
space:
mode:
authorroam <roam@FreeBSD.org>2001-06-29 22:31:17 +0000
committerroam <roam@FreeBSD.org>2001-06-29 22:31:17 +0000
commit4db4ecf48f5749f368bdadc4c5a3865015eadb86 (patch)
tree811f0aff413f5e006a8452bfad794183b1e3bc94 /sbin/kldconfig
parent7bf89cea2b689b7bf176393349b2f688faa0f285 (diff)
downloadFreeBSD-src-4db4ecf48f5749f368bdadc4c5a3865015eadb86.zip
FreeBSD-src-4db4ecf48f5749f368bdadc4c5a3865015eadb86.tar.gz
Properly cast a size argument to an unsigned type.
Thanks to: dd for noticing the need for a cast.
Diffstat (limited to 'sbin/kldconfig')
-rw-r--r--sbin/kldconfig/kldconfig.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/kldconfig/kldconfig.c b/sbin/kldconfig/kldconfig.c
index 3d48bf5..bd4015d 100644
--- a/sbin/kldconfig/kldconfig.c
+++ b/sbin/kldconfig/kldconfig.c
@@ -119,7 +119,8 @@ getpath(void)
err(1, "getting path: sysctl(%s) - size only", pathctl);
if ((path = malloc(sz + 1)) == NULL) {
errno = ENOMEM;
- err(1, "allocating %lu bytes for the path", (long)sz+1);
+ err(1, "allocating %lu bytes for the path",
+ (unsigned long)sz+1);
}
if (sysctl(mib, miblen, path, &sz, NULL, NULL) == -1)
err(1, "getting path: sysctl(%s)", pathctl);
OpenPOWER on IntegriCloud