summaryrefslogtreecommitdiff
path: root/gdb/ia64-hpux-nat.c
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2011-01-14 13:53:01 +0000
committerJoel Brobecker <brobecker@gnat.com>2011-01-14 13:53:01 +0000
commit2c7df889b82de365727725ce224323c1627fc4d0 (patch)
tree2324854380ba40950dd09f9e207881c28849c46c /gdb/ia64-hpux-nat.c
parentb81a31ca876f98fe3df6cca179cd1b80f56dd634 (diff)
downloadgdb-2c7df889b82de365727725ce224323c1627fc4d0.tar.gz
fix ARI warnings introduced by ia64-hpux patches
gdb/ChangeLog: * ia64-hpux-nat.c (ia64_hpux_fetch_register): Remove trailing new-line at end of warning message. (ia64_hpux_store_register): Remove trailing new-line at end of error message. * ia64-hpux-tdep.c: Rephrase comment. * solib-ia64-hpux.c (struct dld_info): Change type of field dld_flags from "long long" to ULONGEST.
Diffstat (limited to 'gdb/ia64-hpux-nat.c')
-rw-r--r--gdb/ia64-hpux-nat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/ia64-hpux-nat.c b/gdb/ia64-hpux-nat.c
index 32160aad612..b5c8b805a11 100644
--- a/gdb/ia64-hpux-nat.c
+++ b/gdb/ia64-hpux-nat.c
@@ -252,7 +252,7 @@ ia64_hpux_fetch_register (struct regcache *regcache, int regnum)
buf = alloca (len * sizeof (gdb_byte));
status = ia64_hpux_read_register_from_save_state_t (offset, buf, len);
if (status < 0)
- warning (_("Failed to read register value for %s.\n"),
+ warning (_("Failed to read register value for %s."),
gdbarch_register_name (gdbarch, regnum));
regcache_raw_supply (regcache, regnum, buf);
@@ -312,7 +312,7 @@ ia64_hpux_store_register (const struct regcache *regcache, int regnum)
status = ia64_hpux_write_register_to_saved_state_t (offset, buf, len);
if (status < 0)
- error (_("failed to write register value for %s.\n"),
+ error (_("failed to write register value for %s."),
gdbarch_register_name (gdbarch, regnum));
}