aboutsummaryrefslogtreecommitdiff
path: root/gdb/main.c
diff options
context:
space:
mode:
authorPhilippe Waroquiers <philippe.waroquiers@skynet.be>2021-05-22 17:00:11 +0200
committerPhilippe Waroquiers <philippe.waroquiers@skynet.be>2021-05-22 17:02:46 +0200
commit8569d6e13ceb02d98ab9de7d786ee68dccce72f3 (patch)
treef6a7846ae40e93b9b41344aa1aa9a1c68ea81dcb /gdb/main.c
parentd71893802fe424e3123ced8c6ed158958487f716 (diff)
downloadbinutils-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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/main.c b/gdb/main.c
index d92aa02..5761ce2 100644
--- a/gdb/main.c
+++ b/gdb/main.c
@@ -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
};