aboutsummaryrefslogtreecommitdiff
path: root/util-linux/mkfs_vfat.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2009-04-29 12:02:57 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2009-04-29 12:02:57 +0000
commit1fd3b38fd19057e7b048e08d6157ece06874feb1 (patch)
treee0730c5ad066166e9d642be9a7247bcba0d75cc6 /util-linux/mkfs_vfat.c
parent052ad9a56883a56742cec1afc6c1c8dfff222495 (diff)
downloadbusybox-w32-1fd3b38fd19057e7b048e08d6157ece06874feb1.tar.gz
busybox-w32-1fd3b38fd19057e7b048e08d6157ece06874feb1.tar.bz2
busybox-w32-1fd3b38fd19057e7b048e08d6157ece06874feb1.zip
*: bb_error_msg's messages should not be capitalized
Diffstat (limited to 'util-linux/mkfs_vfat.c')
-rw-r--r--util-linux/mkfs_vfat.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/util-linux/mkfs_vfat.c b/util-linux/mkfs_vfat.c
index 72c2058b5..98a089502 100644
--- a/util-linux/mkfs_vfat.c
+++ b/util-linux/mkfs_vfat.c
@@ -273,10 +273,10 @@ int mkfs_vfat_main(int argc UNUSED_PARAM, char **argv)
273 device_num == 0x0d00 || // xd 273 device_num == 0x0d00 || // xd
274 device_num == 0x1600 ) // hdc, hdd 274 device_num == 0x1600 ) // hdc, hdd
275 ) 275 )
276 bb_error_msg_and_die("Will not try to make filesystem on full-disk device (use -I if wanted)"); 276 bb_error_msg_and_die("will not try to make filesystem on full-disk device (use -I if wanted)");
277 // can't work on mounted filesystems 277 // can't work on mounted filesystems
278 if (find_mount_point(device_name, NULL)) 278 if (find_mount_point(device_name, NULL))
279 bb_error_msg_and_die("Can't format mounted filesystem"); 279 bb_error_msg_and_die("can't format mounted filesystem");
280#endif 280#endif
281 // get true sector size 281 // get true sector size
282 // (parameter must be int*, not long* or size_t*) 282 // (parameter must be int*, not long* or size_t*)
@@ -562,7 +562,7 @@ int mkfs_vfat_main(int argc UNUSED_PARAM, char **argv)
562 start_data_sector = (reserved_sect + NUM_FATS * sect_per_fat) * (bytes_per_sect / SECTOR_SIZE); 562 start_data_sector = (reserved_sect + NUM_FATS * sect_per_fat) * (bytes_per_sect / SECTOR_SIZE);
563 start_data_block = (start_data_sector + SECTORS_PER_BLOCK - 1) / SECTORS_PER_BLOCK; 563 start_data_block = (start_data_sector + SECTORS_PER_BLOCK - 1) / SECTORS_PER_BLOCK;
564 564
565 bb_info_msg("Searching for bad blocks "); 565 bb_info_msg("searching for bad blocks ");
566 currently_testing = 0; 566 currently_testing = 0;
567 try = TEST_BUFFER_BLOCKS; 567 try = TEST_BUFFER_BLOCKS;
568 while (currently_testing < volume_size_blocks) { 568 while (currently_testing < volume_size_blocks) {
@@ -577,7 +577,7 @@ int mkfs_vfat_main(int argc UNUSED_PARAM, char **argv)
577 if (got < 0) 577 if (got < 0)
578 got = 0; 578 got = 0;
579 if (got & (BLOCK_SIZE - 1)) 579 if (got & (BLOCK_SIZE - 1))
580 bb_error_msg("Unexpected values in do_check: probably bugs"); 580 bb_error_msg("unexpected values in do_check: probably bugs");
581 got /= BLOCK_SIZE; 581 got /= BLOCK_SIZE;
582 currently_testing += got; 582 currently_testing += got;
583 if (got == try) { 583 if (got == try) {
@@ -592,7 +592,7 @@ int mkfs_vfat_main(int argc UNUSED_PARAM, char **argv)
592 for (i = 0; i < SECTORS_PER_BLOCK; i++) { 592 for (i = 0; i < SECTORS_PER_BLOCK; i++) {
593 int cluster = (currently_testing * SECTORS_PER_BLOCK + i - start_data_sector) / (int) (sect_per_clust) / (bytes_per_sect / SECTOR_SIZE); 593 int cluster = (currently_testing * SECTORS_PER_BLOCK + i - start_data_sector) / (int) (sect_per_clust) / (bytes_per_sect / SECTOR_SIZE);
594 if (cluster < 0) 594 if (cluster < 0)
595 bb_error_msg_and_die("Invalid cluster number in mark_sector: probably bug!"); 595 bb_error_msg_and_die("invalid cluster number in mark_sector: probably bug!");
596 MARK_CLUSTER(cluster, BAD_FAT32); 596 MARK_CLUSTER(cluster, BAD_FAT32);
597 } 597 }
598 badblocks++; 598 badblocks++;