Use unsigned printf/scanf conversion where more appropriate
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
@@ -239,7 +239,7 @@ static void test_disk(ext2_filsys fs, badblocks_list *bb_list)
|
||||
errcode_t retval;
|
||||
char buf[1024];
|
||||
|
||||
sprintf(buf, "badblocks -b %d %s%s%s %d", fs->blocksize,
|
||||
sprintf(buf, "badblocks -b %u %s%s%s %d", fs->blocksize,
|
||||
quiet ? "" : "-s ", (cflag > 1) ? "-w " : "",
|
||||
fs->device_name, fs->super->s_blocks_count);
|
||||
mke2fs_verbose("Running command: %s\n", buf);
|
||||
|
@@ -607,7 +607,7 @@ int tune2fs_main(int argc, char **argv)
|
||||
if (e_flag) {
|
||||
sb->s_errors = errors;
|
||||
ext2fs_mark_super_dirty(fs);
|
||||
printf("Setting error behavior to %d\n", errors);
|
||||
printf("Setting error behavior to %u\n", errors);
|
||||
}
|
||||
if (g_flag) {
|
||||
sb->s_def_resgid = resgid;
|
||||
|
@@ -239,7 +239,7 @@ void make_journal_blocks(ext2_filsys fs, int journal_size, int journal_flags, in
|
||||
return;
|
||||
}
|
||||
if (!quiet)
|
||||
printf("Creating journal (%ld blocks): ", journal_blocks);
|
||||
printf("Creating journal (%lu blocks): ", journal_blocks);
|
||||
fflush(stdout);
|
||||
retval = ext2fs_add_journal_inode(fs, journal_blocks,
|
||||
journal_flags);
|
||||
|
Reference in New Issue
Block a user