diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-03-15 08:29:22 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-03-15 08:29:22 +0000 |
commit | c7bda1ce659294d6e22c06e087f6f265983c7578 (patch) | |
tree | 4c6d2217f4d8306c59cf1096f8664e1cfd167213 /util-linux/fsck_minix.c | |
parent | 8854004b41065b3d081af7f3df13a100b0c8bfbe (diff) | |
download | busybox-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/fsck_minix.c')
-rw-r--r-- | util-linux/fsck_minix.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/util-linux/fsck_minix.c b/util-linux/fsck_minix.c index 4d07e028f..709a2a143 100644 --- a/util-linux/fsck_minix.c +++ b/util-linux/fsck_minix.c | |||
@@ -49,7 +49,7 @@ | |||
49 | * 01.07.96 - Fixed the v2 fs stuff to use the right #defines and such | 49 | * 01.07.96 - Fixed the v2 fs stuff to use the right #defines and such |
50 | * for modern libcs (janl@math.uio.no, Nicolai Langfeldt) | 50 | * for modern libcs (janl@math.uio.no, Nicolai Langfeldt) |
51 | * | 51 | * |
52 | * 02.07.96 - Added C bit fiddling routines from rmk@ecs.soton.ac.uk | 52 | * 02.07.96 - Added C bit fiddling routines from rmk@ecs.soton.ac.uk |
53 | * (Russell King). He made them for ARM. It would seem | 53 | * (Russell King). He made them for ARM. It would seem |
54 | * that the ARM is powerful enough to do this in C whereas | 54 | * that the ARM is powerful enough to do this in C whereas |
55 | * i386 and m64k must use assembly to get it fast >:-) | 55 | * i386 and m64k must use assembly to get it fast >:-) |
@@ -57,7 +57,7 @@ | |||
57 | * (janl@math.uio.no, Nicolai Langfeldt) | 57 | * (janl@math.uio.no, Nicolai Langfeldt) |
58 | * | 58 | * |
59 | * 04.11.96 - Added minor fixes from Andreas Schwab to avoid compiler | 59 | * 04.11.96 - Added minor fixes from Andreas Schwab to avoid compiler |
60 | * warnings. Added mc68k bitops from | 60 | * warnings. Added mc68k bitops from |
61 | * Joerg Dorchain <dorchain@mpi-sb.mpg.de>. | 61 | * Joerg Dorchain <dorchain@mpi-sb.mpg.de>. |
62 | * | 62 | * |
63 | * 06.11.96 - Added v2 code submitted by Joerg Dorchain, but written by | 63 | * 06.11.96 - Added v2 code submitted by Joerg Dorchain, but written by |
@@ -83,7 +83,7 @@ | |||
83 | * -f force filesystem check even if filesystem marked as valid | 83 | * -f force filesystem check even if filesystem marked as valid |
84 | * | 84 | * |
85 | * The device may be a block device or a image of one, but this isn't | 85 | * The device may be a block device or a image of one, but this isn't |
86 | * enforced (but it's not much fun on a character device :-). | 86 | * enforced (but it's not much fun on a character device :-). |
87 | */ | 87 | */ |
88 | 88 | ||
89 | #include <stdio.h> | 89 | #include <stdio.h> |
@@ -1312,7 +1312,7 @@ static void free_name_list(void) | |||
1312 | { | 1312 | { |
1313 | int i; | 1313 | int i; |
1314 | 1314 | ||
1315 | if (name_list) { | 1315 | if (name_list) { |
1316 | for (i = 0; i < MAX_DEPTH; i++) { | 1316 | for (i = 0; i < MAX_DEPTH; i++) { |
1317 | free(name_list[i]); | 1317 | free(name_list[i]); |
1318 | } | 1318 | } |
@@ -1396,7 +1396,7 @@ extern int fsck_minix_main(int argc, char **argv) | |||
1396 | /* | 1396 | /* |
1397 | * Determine whether or not we should continue with the checking. | 1397 | * Determine whether or not we should continue with the checking. |
1398 | * This is based on the status of the filesystem valid and error | 1398 | * This is based on the status of the filesystem valid and error |
1399 | * flags and whether or not the -f switch was specified on the | 1399 | * flags and whether or not the -f switch was specified on the |
1400 | * command line. | 1400 | * command line. |
1401 | */ | 1401 | */ |
1402 | printf("%s, %s\n", bb_applet_name, program_version); | 1402 | printf("%s, %s\n", bb_applet_name, program_version); |