From 8569d6e13ceb02d98ab9de7d786ee68dccce72f3 Mon Sep 17 00:00:00 2001 From: Philippe Waroquiers Date: Sat, 22 May 2021 17:00:11 +0200 Subject: 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) --- gdb/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gdb/main.c') 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 }; -- cgit v1.1