diff options
author | Philippe Waroquiers <philippe.waroquiers@skynet.be> | 2021-05-22 17:00:11 +0200 |
---|---|---|
committer | Philippe Waroquiers <philippe.waroquiers@skynet.be> | 2021-05-22 17:02:46 +0200 |
commit | 8569d6e13ceb02d98ab9de7d786ee68dccce72f3 (patch) | |
tree | f6a7846ae40e93b9b41344aa1aa9a1c68ea81dcb /gdb/main.c | |
parent | d71893802fe424e3123ced8c6ed158958487f716 (diff) | |
download | binutils-8569d6e13ceb02d98ab9de7d786ee68dccce72f3.zip binutils-8569d6e13ceb02d98ab9de7d786ee68dccce72f3.tar.gz binutils-8569d6e13ceb02d98ab9de7d786ee68dccce72f3.tar.bz2 |
Fix option type comments for CMDARG_EARLYINIT_FILE and CMDARG_EARLYINIT_COMMAND.
The comments in the enum cmdarg_kind were using -sx and -sex instead
of -eix and -eiex.
(Note that gdb --help does not speak about these options).
(pushed as obvious)
Diffstat (limited to 'gdb/main.c')
-rw-r--r-- | gdb/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -574,14 +574,14 @@ enum cmdarg_kind /* Option type -ix. */ CMDARG_INIT_FILE, - + /* Option type -iex. */ CMDARG_INIT_COMMAND, - /* Option type -sx. */ + /* Option type -eix. */ CMDARG_EARLYINIT_FILE, - /* Option type -sex. */ + /* Option type -eiex. */ CMDARG_EARLYINIT_COMMAND }; |