From: Doug Evans Date: Tue, 5 Feb 2013 21:31:31 +0000 (+0000) Subject: * completer.c (location_completer): Fix typo in comment. X-Git-Tag: sid-snapshot-20130301~256 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=59be2b6abccdc479931e79c0a64b9d2733289ec4;p=external%2Fbinutils.git * completer.c (location_completer): Fix typo in comment. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index efa0771..699555f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2013-02-05 Doug Evans + + * completer.c (location_completer): Fix typo in comment. + 2013-02-05 Jan Kratochvil * breakpoint.c (add_location_to_breakpoint): Insert the location with diff --git a/gdb/completer.c b/gdb/completer.c index 969d015..3b14fc9 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] == '\'')