diff options
author | Dima Dorfman <dd@FreeBSD.org> | 2001-06-29 19:46:29 +0000 |
---|---|---|
committer | Dima Dorfman <dd@FreeBSD.org> | 2001-06-29 19:46:29 +0000 |
commit | 427f984a671ee8cc8639280dad4ce3c16f367071 (patch) | |
tree | df8ed5751a500e3dfa8e63c091684439c2869cf7 /sbin | |
parent | 9a44bb7681308d9241c83ddf6f1b19f525fe2786 (diff) | |
download | src-427f984a671ee8cc8639280dad4ce3c16f367071.tar.gz src-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')
-rw-r--r-- | sbin/kldconfig/kldconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/kldconfig/kldconfig.c b/sbin/kldconfig/kldconfig.c index 979ff2e66f97..3d48bf5cbfe7 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); |