diff options
author | wollman <wollman@FreeBSD.org> | 2002-05-30 21:00:42 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 2002-05-30 21:00:42 +0000 |
commit | a50f81e50ad74969c1793362e0db624698fc31d4 (patch) | |
tree | d98473a557354ab6a87812fb20ba3d438200b648 /lib/libdisk | |
parent | 5f28f6025eb08d8524100e544650d1f3c9bb6118 (diff) | |
download | FreeBSD-src-a50f81e50ad74969c1793362e0db624698fc31d4.zip FreeBSD-src-a50f81e50ad74969c1793362e0db624698fc31d4.tar.gz |
Use correct printf format specifier to print unsigned longs.
Diffstat (limited to 'lib/libdisk')
-rw-r--r-- | lib/libdisk/create_chunk.c | 2 |
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) |