diff options
author | Doug Evans <dje@google.com> | 2008-05-09 17:37:36 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2008-05-09 17:37:36 +0000 |
commit | 5e1471f57fac8ea99e40cfb4be212e896bac56ff (patch) | |
tree | 912a2d71d8b67aa64313f4da3943bbc9f5220358 /gdb/target.c | |
parent | 08388c79d5a8553465b2de881bed15766837735c (diff) | |
download | gdb-5e1471f57fac8ea99e40cfb4be212e896bac56ff.zip gdb-5e1471f57fac8ea99e40cfb4be212e896bac56ff.tar.gz gdb-5e1471f57fac8ea99e40cfb4be212e896bac56ff.tar.bz2 |
* error.c (parse_find_args): Fix capitalization in previous patch.
(find_command): Ditto.
* target.c (simple_search_memory): Ditto.
* gdbserver/server.c (handle_search_memory_1): Ditto.
(handle_search_memory): Ditto.
Diffstat (limited to 'gdb/target.c')
-rw-r--r-- | gdb/target.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/target.c b/gdb/target.c index a9f9254..be7f3a1 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -1788,7 +1788,7 @@ simple_search_memory (struct target_ops *ops, search_buf = malloc (search_buf_size); if (search_buf == NULL) - error (_("unable to allocate memory to perform the search")); + error (_("Unable to allocate memory to perform the search.")); old_cleanups = make_cleanup (free_current_contents, &search_buf); /* Prime the search buffer. */ @@ -1796,7 +1796,7 @@ simple_search_memory (struct target_ops *ops, if (target_read (ops, TARGET_OBJECT_MEMORY, NULL, search_buf, start_addr, search_buf_size) != search_buf_size) { - warning (_("unable to access target memory at %s, halting search"), + warning (_("Unable to access target memory at %s, halting search."), hex_string (start_addr)); do_cleanups (old_cleanups); return -1; @@ -1849,7 +1849,7 @@ simple_search_memory (struct target_ops *ops, search_buf + keep_len, read_addr, nr_to_read) != nr_to_read) { - warning (_("unable to access target memory at %s, halting search"), + warning (_("Unable to access target memory at %s, halting search."), hex_string (read_addr)); do_cleanups (old_cleanups); return -1; |