diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2013-11-29 16:45:45 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2013-11-29 16:45:45 +0100 |
commit | 327f550669a80d72f36bc9e4de619c163aa46eff (patch) | |
tree | d304092aeb06539085be1385ab9298876c414b44 /util-linux/fsck_minix.c | |
parent | 9b2a9f0210f13f1c59c0b954c4aa0eeb0a66efd1 (diff) | |
download | busybox-w32-327f550669a80d72f36bc9e4de619c163aa46eff.tar.gz busybox-w32-327f550669a80d72f36bc9e4de619c163aa46eff.tar.bz2 busybox-w32-327f550669a80d72f36bc9e4de619c163aa46eff.zip |
Use unsigned printf/scanf conversion where more appropriate
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/fsck_minix.c')
-rw-r--r-- | util-linux/fsck_minix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/fsck_minix.c b/util-linux/fsck_minix.c index c1d1b2cc3..33767a1af 100644 --- a/util-linux/fsck_minix.c +++ b/util-linux/fsck_minix.c | |||
@@ -686,7 +686,7 @@ static void get_inode_common(unsigned nr, uint16_t i_mode) | |||
686 | total++; | 686 | total++; |
687 | if (!inode_count[nr]) { | 687 | if (!inode_count[nr]) { |
688 | if (!inode_in_use(nr)) { | 688 | if (!inode_in_use(nr)) { |
689 | printf("Inode %d is marked as 'unused', but it is used " | 689 | printf("Inode %u is marked as 'unused', but it is used " |
690 | "for file '%s'\n", nr, current_name); | 690 | "for file '%s'\n", nr, current_name); |
691 | if (OPT_repair) { | 691 | if (OPT_repair) { |
692 | if (ask("Mark as 'in use'", 1)) | 692 | if (ask("Mark as 'in use'", 1)) |