X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=util-linux%2Fmkfs_ext2.c;h=cf40c20eb7a23df09a53a61ac49fbdf6c9db2d5a;hb=4f0408b5bc6ed726e7f98d6adedede41337b9b74;hp=44fb4025003adcb4316408a7554be3c66e337446;hpb=40e7d25aca1abbe080e00e2bed64b444a5ec7858;p=oweals%2Fbusybox.git diff --git a/util-linux/mkfs_ext2.c b/util-linux/mkfs_ext2.c index 44fb40250..cf40c20eb 100644 --- a/util-linux/mkfs_ext2.c +++ b/util-linux/mkfs_ext2.c @@ -217,7 +217,7 @@ int mkfs_ext2_main(int argc UNUSED_PARAM, char **argv) &reserved_percent, NULL, NULL, &label, NULL, NULL, NULL, NULL, NULL, NULL); argv += optind; // argv[0] -- device - // check the device is a block device + // open the device, check the device is a block device xmove_fd(xopen(argv[0], O_WRONLY), fd); fstat(fd, &st); if (!S_ISBLK(st.st_mode) && !(option_mask32 & OPT_F)) @@ -225,11 +225,11 @@ int mkfs_ext2_main(int argc UNUSED_PARAM, char **argv) // check if it is mounted // N.B. what if we format a file? find_mount_point will return false negative since - // it is loop block device which mounted! + // it is loop block device which is mounted! if (find_mount_point(argv[0], 0)) bb_error_msg_and_die("can't format mounted filesystem"); - // open the device, get size in kbytes + // get size in kbytes kilobytes = get_volume_size_in_bytes(fd, argv[1], 1024, /*extend:*/ !(option_mask32 & OPT_n)) / 1024; bytes_per_inode = 16384;