Fix formatting warning.

MFC after:	1 week
This commit is contained in:
Andrey V. Elsukov 2013-08-06 10:35:05 +00:00
parent 6d65b3be10
commit 0689b6d106

View file

@ -54,7 +54,7 @@ diskread(void *arg, void *buf, size_t blocks, off_t offset)
struct disk *dp;
dp = (struct disk *)arg;
printf("%s: read %d blocks from the offset %jd [+%jd]\n", dp->name,
printf("%s: read %lu blocks from the offset %jd [+%jd]\n", dp->name,
blocks, offset, dp->offset);
if (offset >= dp->mediasize / dp->sectorsize)
return (-1);