diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-09-09 23:55:01 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-09-11 02:55:06 -0400 |
commit | bf9f8f4179e620d87b3b481635c10df6fad86e56 (patch) | |
tree | 795fa9b27923f4d45247419900e0039f7e0caced /sim | |
parent | 5abdee61d99784a6bd1fce37e7f0dd7785ef9423 (diff) | |
download | gdb-bf9f8f4179e620d87b3b481635c10df6fad86e56.zip gdb-bf9f8f4179e620d87b3b481635c10df6fad86e56.tar.gz gdb-bf9f8f4179e620d87b3b481635c10df6fad86e56.tar.bz2 |
sim: run: change help short option to -h
It's unclear why -H was picked over the more standard -h, but since
-h is still not used, just change -H to -h to match pretty much every
other tool in the sourceware tree.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/common/sim-options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/common/sim-options.c b/sim/common/sim-options.c index 9915c22..e6d1107 100644 --- a/sim/common/sim-options.c +++ b/sim/common/sim-options.c @@ -142,7 +142,7 @@ static const OPTION standard_options[] = standard_option_handler }, { {"help", no_argument, NULL, OPTION_HELP}, - 'H', NULL, "Print help information", + 'h', NULL, "Print help information", standard_option_handler }, { {"version", no_argument, NULL, OPTION_VERSION}, '\0', NULL, "Print version information", |