aboutsummaryrefslogtreecommitdiff
path: root/gdb/completer.c
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
commit59be2b6abccdc479931e79c0a64b9d2733289ec4 (patch)
tree405003e42a270d3c9e1c027821d54eec8cf8eaef /gdb/completer.c
parent5a2dc60a6abad96f4d6cead42146df9a0d635b08 (diff)
* completer.c (location_completer): Fix typo in comment.
Diffstat (limited to 'gdb/completer.c')
-rw-r--r--gdb/completer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/completer.c b/gdb/completer.c
index 969d015060..3b14fc9423 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] == '\'')