summaryrefslogtreecommitdiff
path: root/sbin/kldconfig
diff options
context:
space:
mode:
authorDima Dorfman <dd@FreeBSD.org>2001-06-29 19:46:29 +0000
committerDima Dorfman <dd@FreeBSD.org>2001-06-29 19:46:29 +0000
commit427f984a671ee8cc8639280dad4ce3c16f367071 (patch)
treedf8ed5751a500e3dfa8e63c091684439c2869cf7 /sbin/kldconfig
parent9a44bb7681308d9241c83ddf6f1b19f525fe2786 (diff)
downloadsrc-test-427f984a671ee8cc8639280dad4ce3c16f367071.tar.gz
src-test-427f984a671ee8cc8639280dad4ce3c16f367071.zip
Silence warnings on the Alpha: don't assume size_t is an int.
Notes
Notes: svn path=/head/; revision=78982
Diffstat (limited to 'sbin/kldconfig')
-rw-r--r--sbin/kldconfig/kldconfig.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/kldconfig/kldconfig.c b/sbin/kldconfig/kldconfig.c
index 979ff2e66f979..3d48bf5cbfe78 100644
--- a/sbin/kldconfig/kldconfig.c
+++ b/sbin/kldconfig/kldconfig.c
@@ -119,7 +119,7 @@ getpath(void)
err(1, "getting path: sysctl(%s) - size only", pathctl);
if ((path = malloc(sz + 1)) == NULL) {
errno = ENOMEM;
- err(1, "allocating %u bytes for the path", sz+1);
+ err(1, "allocating %lu bytes for the path", (long)sz+1);
}
if (sysctl(mib, miblen, path, &sz, NULL, NULL) == -1)
err(1, "getting path: sysctl(%s)", pathctl);