diff options
Diffstat (limited to 'util-linux/fdformat.c')
-rw-r--r-- | util-linux/fdformat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/fdformat.c b/util-linux/fdformat.c index b3e918fb0..6f49cec8f 100644 --- a/util-linux/fdformat.c +++ b/util-linux/fdformat.c | |||
@@ -72,7 +72,7 @@ int fdformat_main(int argc UNUSED_PARAM, char **argv) | |||
72 | /* original message was: "Could not determine current format type" */ | 72 | /* original message was: "Could not determine current format type" */ |
73 | xioctl(fd, FDGETPRM, ¶m); | 73 | xioctl(fd, FDGETPRM, ¶m); |
74 | 74 | ||
75 | printf("%s-sided, %d tracks, %d sec/track. Total capacity %d kB\n", | 75 | printf("%s-sided, %u tracks, %u sec/track. Total capacity %d kB\n", |
76 | (param.head == 2) ? "Double" : "Single", | 76 | (param.head == 2) ? "Double" : "Single", |
77 | param.track, param.sect, param.size >> 1); | 77 | param.track, param.sect, param.size >> 1); |
78 | 78 | ||