summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorwollman <wollman@FreeBSD.org>2002-05-30 21:00:42 +0000
committerwollman <wollman@FreeBSD.org>2002-05-30 21:00:42 +0000
commita50f81e50ad74969c1793362e0db624698fc31d4 (patch)
treed98473a557354ab6a87812fb20ba3d438200b648 /lib
parent5f28f6025eb08d8524100e544650d1f3c9bb6118 (diff)
downloadFreeBSD-src-a50f81e50ad74969c1793362e0db624698fc31d4.zip
FreeBSD-src-a50f81e50ad74969c1793362e0db624698fc31d4.tar.gz
Use correct printf format specifier to print unsigned longs.
Diffstat (limited to 'lib')
-rw-r--r--lib/libdisk/create_chunk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libdisk/create_chunk.c b/lib/libdisk/create_chunk.c
index 11314f2..f4b6768 100644
--- a/lib/libdisk/create_chunk.c
+++ b/lib/libdisk/create_chunk.c
@@ -383,7 +383,7 @@ MakeDev(struct chunk *c1, const char *path)
part = *p - 'a';
done:
if (isDebug())
- msgDebug("MakeDev: Unit %d, Slice %d, Part %d\n", unit, slice, part);
+ msgDebug("MakeDev: Unit %lu, Slice %lu, Part %lu\n", unit, slice, part);
if (unit > 32)
return 0;
if (slice > 32)
OpenPOWER on IntegriCloud