fdformat: match variable and print format types

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
This commit is contained in:
Sami Kerola 2014-07-13 17:34:25 +01:00
parent 3524452a71
commit 18b1fcb9cc
1 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ static void format_disk(int ctrl)
if (ioctl(ctrl, FDFMTTRK, (long) &descr) < 0)
err(EXIT_FAILURE, "ioctl: FDFMTTRK");
printf("%3d\b\b\b", track);
printf("%3ud\b\b\b", track);
fflush(stdout);
if (param.head == 2) {
descr.head = 1;
@ -63,7 +63,7 @@ static void verify_disk(char *name)
for (cyl = 0; cyl < param.track; cyl++) {
int read_bytes;
printf("%3d\b\b\b", cyl);
printf("%u3d\b\b\b", cyl);
fflush(stdout);
read_bytes = read(fd, data, cyl_size);
if (read_bytes != cyl_size) {