Use correct printf format specifier to print unsigned longs.

This commit is contained in:
Garrett Wollman 2002-05-30 21:00:42 +00:00
parent c7c5d95d56
commit d7c98975c5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=97628

View file

@ -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)