diff options
author | Brian Norris <norris@broadcom.com> | 2010-07-08 13:50:08 -0700 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2010-07-18 10:20:29 +0300 |
commit | 02ae0aac87576d07202a62d11294ea55b56f450b (patch) | |
tree | 333daefef539419e1325a423da936bfd3d37cc6c /nandtest.c | |
parent | 910d1d29223dfd230e19ea0ae4c499df27bb94d0 (diff) |
nandtest: Fixed indentation
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>
Diffstat (limited to 'nandtest.c')
-rw-r--r-- | nandtest.c | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -18,13 +18,13 @@ 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); } |