From 5916bd20ba6635eb38342c1d2b8f8d830ba81bd6 Mon Sep 17 00:00:00 2001 From: Peter Pentchev Date: Fri, 29 Jun 2001 22:31:17 +0000 Subject: [PATCH] Properly cast a size argument to an unsigned type. Thanks to: dd for noticing the need for a cast. --- sbin/kldconfig/kldconfig.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sbin/kldconfig/kldconfig.c b/sbin/kldconfig/kldconfig.c index 3d48bf5cbfe..bd4015df6b1 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);