diff options
author | Denys Vlasenko | 2009-08-02 20:18:29 +0200 |
---|---|---|
committer | Denys Vlasenko | 2009-08-02 20:18:29 +0200 |
commit | 4cd4eb43320de6ecccb3b69087daee325d0bbfc1 (patch) | |
tree | 44db952d0feea229c4359bd5a2f8dc59db5ee07d /util-linux/mkfs_vfat.c | |
parent | 6a98f95373d60d48001299797f52b1f19c7ffecd (diff) | |
download | busybox-4cd4eb43320de6ecccb3b69087daee325d0bbfc1.zip busybox-4cd4eb43320de6ecccb3b69087daee325d0bbfc1.tar.gz |
apply post-1.14.2 patches
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
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 72c2058..aa6ae92 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) device_num == 0x0d00 || // xd device_num == 0x1600 ) // hdc, hdd ) - bb_error_msg_and_die("Will not try to make filesystem on full-disk device (use -I if wanted)"); + bb_error_msg_and_die("will not try to make filesystem on full-disk device (use -I if wanted)"); // can't work on mounted filesystems - if (find_mount_point(device_name, NULL)) - bb_error_msg_and_die("Can't format mounted filesystem"); + if (find_mount_point(device_name)) + bb_error_msg_and_die("can't format mounted filesystem"); #endif // get true sector size // (parameter must be int*, not long* or size_t*) |