summaryrefslogtreecommitdiffstats
path: root/tests/helpers/mnt_test_sysinfo.c
diff options
context:
space:
mode:
authorKarel Zak2007-02-06 11:33:35 +0100
committerKarel Zak2007-02-06 11:33:35 +0100
commitca04734de12f317e4fa47da0ad6e7e3b45e8b3a8 (patch)
treeff6338709aa8e0f29411f37832b97cb5b8439fa6 /tests/helpers/mnt_test_sysinfo.c
parentnamei: new regression test (diff)
downloadkernel-qcow2-util-linux-ca04734de12f317e4fa47da0ad6e7e3b45e8b3a8.tar.gz
kernel-qcow2-util-linux-ca04734de12f317e4fa47da0ad6e7e3b45e8b3a8.tar.xz
kernel-qcow2-util-linux-ca04734de12f317e4fa47da0ad6e7e3b45e8b3a8.zip
tests: fix argv[] usage in mnt_test_sysinfo.c
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'tests/helpers/mnt_test_sysinfo.c')
-rw-r--r--tests/helpers/mnt_test_sysinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/helpers/mnt_test_sysinfo.c b/tests/helpers/mnt_test_sysinfo.c
index 0acb130b0..90cf02337 100644
--- a/tests/helpers/mnt_test_sysinfo.c
+++ b/tests/helpers/mnt_test_sysinfo.c
@@ -85,7 +85,7 @@ main(int argc, char **argv)
} else {
int i;
- if (strcmp(argv[0], "--help") == 0 || strcmp(argv[0], "-h") == 0) {
+ if (strcmp(argv[1], "--help") == 0 || strcmp(argv[1], "-h") == 0) {
printf("%s <option>\n", argv[0]);
fputs("options:\n", stdout);
for (fn = hlps; fn->name; fn++)