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)
This commit is contained in:
Philippe Waroquiers 2021-05-22 17:00:11 +02:00
parent d71893802f
commit 8569d6e13c
2 changed files with 8 additions and 3 deletions

View file

@ -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
};