diff options
author | Kay Sievers <kay.sievers@suse.de> | 2006-09-03 03:36:20 +0200 |
---|---|---|
committer | Kay Sievers <kay.sievers@suse.de> | 2006-09-03 03:36:20 +0200 |
commit | a44a30f6642ce49280012c551b532936a3a68729 (patch) | |
tree | e90d8d1125c0239ff6191cabe076d7f53d33bb31 /udevtrigger.c | |
parent | fc89fe7edf83af465c1835d8eb985e4298ad2417 (diff) |
udevtrigger: remove unused longindex
Diffstat (limited to 'udevtrigger.c')
-rw-r--r-- | udevtrigger.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/udevtrigger.c b/udevtrigger.c index 9a1e82887b..571bcadfc5 100644 --- a/udevtrigger.c +++ b/udevtrigger.c @@ -468,7 +468,6 @@ int main(int argc, char *argv[], char *envp[]) { int failed = 0; int option; - int longindex; struct option options[] = { { "verbose", 0, NULL, 'v' }, { "dry-run", 0, NULL, 'n' }, @@ -487,7 +486,7 @@ int main(int argc, char *argv[], char *envp[]) sysfs_init(); while (1) { - option = getopt_long(argc, argv, "vnFhs:S:a:A:", options, &longindex); + option = getopt_long(argc, argv, "vnFhs:S:a:A:", options, NULL); if (option == -1) break; @@ -518,8 +517,8 @@ int main(int argc, char *argv[], char *envp[]) " --verbose print the list of devices which will be triggered\n" " --dry-run do not actually trigger the event\n" " --retry-failed trigger only the events which are failed during a previous run\n" - " --subsystem-match select only devices from the specified subystem\n" - " --subsystem-nomatch exclude devices from the specified subystem\n" + " --subsystem-match=<subsystem> select only devices from the specified subystem\n" + " --subsystem-nomatch=<subsystem> exclude devices from the specified subystem\n" " --attr-match=<file[=<value>]> select only devices with a matching sysfs attribute\n" " --attr-nomatch=<file[=<value>]> exclude devices with a matching sysfs attribute\n" " --help print this text\n" |