nandtest: Fixed indentation
authorBrian Norris <norris@broadcom.com>
Thu, 8 Jul 2010 20:50:08 +0000 (13:50 -0700)
committerArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
Sun, 18 Jul 2010 07:20:29 +0000 (10:20 +0300)
Replaced tabs with spaces in the help message for nandtest to
fix problems with varying indentation and to provide consistency
with other utils in the set.

Signed-off-by: Brian Norris <norris@broadcom.com>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
nandtest.c

index e31e28a44a5facd519aec8088b20d0f8697473d8..13e9577a3c16bed906b043132542e6048ae6b372 100644 (file)
 void usage(void)
 {
        fprintf(stderr, "usage: nandtest [OPTIONS] <device>\n\n"
-               "  -h, --help           Display this help output\n"
-               "  -m, --markbad        Mark blocks bad if they appear so\n"
-               "  -s, --seed           Supply random seed\n"
-               "  -p, --passes         Number of passes\n"
-               "  -o, --offset         Start offset on flash\n"
-               "  -l, --length         Length of flash to test\n"
-               "  -k, --keep           Restore existing contents after test\n");
+               "  -h, --help           Display this help output\n"
+               "  -m, --markbad        Mark blocks bad if they appear so\n"
+               "  -s, --seed           Supply random seed\n"
+               "  -p, --passes         Number of passes\n"
+               "  -o, --offset         Start offset on flash\n"
+               "  -l, --length         Length of flash to test\n"
+               "  -k, --keep           Restore existing contents after test\n");
        exit(1);
 }