summaryrefslogtreecommitdiff
path: root/util-linux/mkfs_minix.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-03-15 08:29:22 +0000
committerEric Andersen <andersen@codepoet.org>2004-03-15 08:29:22 +0000
commitc7bda1ce659294d6e22c06e087f6f265983c7578 (patch)
tree4c6d2217f4d8306c59cf1096f8664e1cfd167213 /util-linux/mkfs_minix.c
parent8854004b41065b3d081af7f3df13a100b0c8bfbe (diff)
downloadbusybox-w32-c7bda1ce659294d6e22c06e087f6f265983c7578.tar.gz
busybox-w32-c7bda1ce659294d6e22c06e087f6f265983c7578.tar.bz2
busybox-w32-c7bda1ce659294d6e22c06e087f6f265983c7578.zip
Remove trailing whitespace. Update copyright to include 2004.
Diffstat (limited to 'util-linux/mkfs_minix.c')
-rw-r--r--util-linux/mkfs_minix.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/util-linux/mkfs_minix.c b/util-linux/mkfs_minix.c
index 0f72b3592..3c140ef2a 100644
--- a/util-linux/mkfs_minix.c
+++ b/util-linux/mkfs_minix.c
@@ -35,7 +35,7 @@
35 * 35 *
36 * 30.10.94 - added support for v2 filesystem 36 * 30.10.94 - added support for v2 filesystem
37 * (Andreas Schwab, schwab@issan.informatik.uni-dortmund.de) 37 * (Andreas Schwab, schwab@issan.informatik.uni-dortmund.de)
38 * 38 *
39 * 09.11.94 - Added test to prevent overwrite of mounted fs adapted 39 * 09.11.94 - Added test to prevent overwrite of mounted fs adapted
40 * from Theodore Ts'o's (tytso@athena.mit.edu) mke2fs 40 * from Theodore Ts'o's (tytso@athena.mit.edu) mke2fs
41 * program. (Daniel Quinlan, quinlan@yggdrasil.com) 41 * program. (Daniel Quinlan, quinlan@yggdrasil.com)
@@ -56,7 +56,7 @@
56 * -v for v2 filesystem 56 * -v for v2 filesystem
57 * 57 *
58 * The device may be a block device or a image of one, but this isn't 58 * The device may be a block device or a image of one, but this isn't
59 * enforced (but it's not much fun on a character device :-). 59 * enforced (but it's not much fun on a character device :-).
60 * 60 *
61 * Modified for BusyBox by Erik Andersen <andersen@debian.org> -- 61 * Modified for BusyBox by Erik Andersen <andersen@debian.org> --
62 * removed getopt based parser and added a hand rolled one. 62 * removed getopt based parser and added a hand rolled one.
@@ -702,7 +702,7 @@ extern int mkfs_minix_main(int argc, char **argv)
702 if (INODE_SIZE2 * MINIX2_INODES_PER_BLOCK != BLOCK_SIZE) 702 if (INODE_SIZE2 * MINIX2_INODES_PER_BLOCK != BLOCK_SIZE)
703 bb_error_msg_and_die("bad inode size"); 703 bb_error_msg_and_die("bad inode size");
704#endif 704#endif
705 705
706 /* Parse options */ 706 /* Parse options */
707 argv++; 707 argv++;
708 while (--argc >= 0 && *argv && **argv) { 708 while (--argc >= 0 && *argv && **argv) {
@@ -755,7 +755,7 @@ extern int mkfs_minix_main(int argc, char **argv)
755 magic = MINIX_SUPER_MAGIC; 755 magic = MINIX_SUPER_MAGIC;
756 else if (i == 30) 756 else if (i == 30)
757 magic = MINIX_SUPER_MAGIC2; 757 magic = MINIX_SUPER_MAGIC2;
758 else 758 else
759 bb_show_usage(); 759 bb_show_usage();
760 namelen = i; 760 namelen = i;
761 dirsize = i + 2; 761 dirsize = i + 2;