diff options
Diffstat (limited to 'util-linux/mkfs_vfat.c')
-rw-r--r-- | util-linux/mkfs_vfat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util-linux/mkfs_vfat.c b/util-linux/mkfs_vfat.c index 72c2058b5..aa6ae92db 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)) |
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*) |