Add missing gettext markup.
gdb/ChangeLog: * remote.c (remote_download_tracepoint): Add missing gettext markup. * tracepoint.c (parse_static_tracepoint_marker_definition): Likewise.
This commit is contained in:
parent
385d04dc77
commit
74232302aa
@ -1,3 +1,8 @@
|
||||
2010-07-28 Joel Brobecker <brobecker@adacore.com>
|
||||
|
||||
* remote.c (remote_download_tracepoint): Add missing gettext markup.
|
||||
* tracepoint.c (parse_static_tracepoint_marker_definition): Likewise.
|
||||
|
||||
2010-07-28 Joel Brobecker <brobecker@adacore.com>
|
||||
|
||||
* breakpoint.c (breakpoint_re_set_one): Move call to set_language
|
||||
|
@ -9746,7 +9746,7 @@ remote_download_tracepoint (struct breakpoint *t)
|
||||
if (target_static_tracepoint_marker_at (tpaddr, &marker))
|
||||
strcat (buf, ":S");
|
||||
else
|
||||
error ("Static tracepoint not valid during download");
|
||||
error (_("Static tracepoint not valid during download"));
|
||||
}
|
||||
else
|
||||
/* Fast tracepoints are functionally identical to regular
|
||||
|
@ -4128,7 +4128,7 @@ parse_static_tracepoint_marker_definition (char *line, char **pp,
|
||||
|
||||
endp = strchr (p, ':');
|
||||
if (endp == NULL)
|
||||
error ("bad marker definition: %s", line);
|
||||
error (_("bad marker definition: %s"), line);
|
||||
|
||||
marker->str_id = xmalloc (endp - p + 1);
|
||||
end = hex2bin (p, (gdb_byte *) marker->str_id, (endp - p + 1) / 2);
|
||||
|
Loading…
x
Reference in New Issue
Block a user