aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2009-01-07 20:38:16 +0000
committerDoug Evans <dje@google.com>2009-01-07 20:38:16 +0000
commit0380c18b13823a0f2cbd9a5601e041faf066c2ac (patch)
treef2d9e9f39e25e78e867ba368899d8408ca717fba /gdb
parent60cf58f5cfcd9fdb9671d6e73071bbe4f0496c44 (diff)
downloadgdb-0380c18b13823a0f2cbd9a5601e041faf066c2ac.zip
gdb-0380c18b13823a0f2cbd9a5601e041faf066c2ac.tar.gz
gdb-0380c18b13823a0f2cbd9a5601e041faf066c2ac.tar.bz2
* cli/cli-cmds.c (set_debug): Fix cut-n-paste error.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/cli/cli-cmds.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 8daaae9..4725738 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2009-01-07 Doug Evans <dje@google.com>
+
+ * cli/cli-cmds.c (set_debug): Fix cut-n-paste error.
+
2009-01-07 Jan Kratochvil <jan.kratochvil@redhat.com>
* f-typeprint.c (f_type_print_base <TYPE_CODE_STRUCT>): Fix output
diff --git a/gdb/cli/cli-cmds.c b/gdb/cli/cli-cmds.c
index b391e30..d3694e4 100644
--- a/gdb/cli/cli-cmds.c
+++ b/gdb/cli/cli-cmds.c
@@ -1111,7 +1111,7 @@ ambiguous_line_spec (struct symtabs_and_lines *sals)
static void
set_debug (char *arg, int from_tty)
{
- printf_unfiltered (_("\"set debug\" must be followed by the name of a print subcommand.\n"));
+ printf_unfiltered (_("\"set debug\" must be followed by the name of a debug subcommand.\n"));
help_list (setdebuglist, "set debug ", -1, gdb_stdout);
}