summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2013-02-05 21:31:31 +0000
committerDoug Evans <dje@google.com>2013-02-05 21:31:31 +0000
commit560bc1c1db9ffba911f68df8bea73c15791f001e (patch)
tree3c061af7c60531bafa1f36c9da6107378c20d156
parenta7dc771403bc83f803e9d54c5a87a8f15ce86721 (diff)
downloadgdb-560bc1c1db9ffba911f68df8bea73c15791f001e.tar.gz
* completer.c (location_completer): Fix typo in comment.
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/completer.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index efa07718700..699555f3893 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2013-02-05 Doug Evans <dje@google.com>
+
+ * completer.c (location_completer): Fix typo in comment.
+
2013-02-05 Jan Kratochvil <jan.kratochvil@redhat.com>
* breakpoint.c (add_location_to_breakpoint): Insert the location with
diff --git a/gdb/completer.c b/gdb/completer.c
index 969d015060f..3b14fc94234 100644
--- a/gdb/completer.c
+++ b/gdb/completer.c
@@ -199,7 +199,7 @@ location_completer (struct cmd_list_element *ignore,
char *orig_text = text;
size_t text_len;
- /* Do we have an unquoted colon, as in "break foo.c::bar"? */
+ /* Do we have an unquoted colon, as in "break foo.c:bar"? */
for (p = text; *p != '\0'; ++p)
{
if (*p == '\\' && p[1] == '\'')