From: Tom de Vries Date: Thu, 25 Nov 2021 06:49:16 +0000 (+0100) Subject: [gdb/cli] Fix typo in logging overwrite help text X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0a4a1c6a3b46731c228431d5bd29181e0d2107c2;p=binutils-gdb.git [gdb/cli] Fix typo in logging overwrite help text Currently we have: ... $ gdb -q -batch -ex "help set logging overwrite" Set whether logging overwrites or appends to the log file. If set, logging overrides the log file. ... Fix overrides -> overwrites typo. --- diff --git a/gdb/cli/cli-logging.c b/gdb/cli/cli-logging.c index f0ee09180f9..8efefa0c5d0 100644 --- a/gdb/cli/cli-logging.c +++ b/gdb/cli/cli-logging.c @@ -178,7 +178,7 @@ _initialize_cli_logging () add_setshow_boolean_cmd ("overwrite", class_support, &logging_overwrite, _("\ Set whether logging overwrites or appends to the log file."), _("\ Show whether logging overwrites or appends to the log file."), _("\ -If set, logging overrides the log file."), +If set, logging overwrites the log file."), set_logging_overwrite, show_logging_overwrite, &set_logging_cmdlist, &show_logging_cmdlist);