diff options
-rw-r--r-- | util-linux/mkfs_vfat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/mkfs_vfat.c b/util-linux/mkfs_vfat.c index 7d81ed06d..d53c751eb 100644 --- a/util-linux/mkfs_vfat.c +++ b/util-linux/mkfs_vfat.c | |||
@@ -578,7 +578,7 @@ int mkfs_vfat_main(int argc UNUSED_PARAM, char **argv) | |||
578 | start_data_sector = (reserved_sect + NUM_FATS * sect_per_fat) * (bytes_per_sect / SECTOR_SIZE); | 578 | start_data_sector = (reserved_sect + NUM_FATS * sect_per_fat) * (bytes_per_sect / SECTOR_SIZE); |
579 | start_data_block = (start_data_sector + SECTORS_PER_BLOCK - 1) / SECTORS_PER_BLOCK; | 579 | start_data_block = (start_data_sector + SECTORS_PER_BLOCK - 1) / SECTORS_PER_BLOCK; |
580 | 580 | ||
581 | bb_info_msg("searching for bad blocks "); | 581 | bb_error_msg("searching for bad blocks"); |
582 | currently_testing = 0; | 582 | currently_testing = 0; |
583 | try = TEST_BUFFER_BLOCKS; | 583 | try = TEST_BUFFER_BLOCKS; |
584 | while (currently_testing < volume_size_blocks) { | 584 | while (currently_testing < volume_size_blocks) { |
@@ -616,7 +616,7 @@ int mkfs_vfat_main(int argc UNUSED_PARAM, char **argv) | |||
616 | } | 616 | } |
617 | free(blkbuf); | 617 | free(blkbuf); |
618 | if (badblocks) | 618 | if (badblocks) |
619 | bb_info_msg("%d bad block(s)", badblocks); | 619 | bb_error_msg("%d bad block(s)", badblocks); |
620 | } | 620 | } |
621 | #endif | 621 | #endif |
622 | 622 | ||