aboutsummaryrefslogtreecommitdiff
path: root/gdb/solib-pa64.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/solib-pa64.c')
-rw-r--r--gdb/solib-pa64.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/gdb/solib-pa64.c b/gdb/solib-pa64.c
index dfb6f5d..262682c 100644
--- a/gdb/solib-pa64.c
+++ b/gdb/solib-pa64.c
@@ -231,7 +231,8 @@ read_dynamic_info (asection *dyninfo_sect, dld_cache_t *dld_cache_p)
sizeof (dld_cache_p->dld_flags))
!= 0)
{
- error (_("Error while reading in .dynamic section of the program."));
+ error (_("Error while reading in "
+ ".dynamic section of the program."));
}
}
else if (dyn_tag == DT_HP_LOAD_MAP)
@@ -244,7 +245,8 @@ read_dynamic_info (asection *dyninfo_sect, dld_cache_t *dld_cache_p)
sizeof (dld_cache_p->load_map_addr))
!= 0)
{
- error (_("Error while reading in .dynamic section of the program."));
+ error (_("Error while reading in "
+ ".dynamic section of the program."));
}
}
else
@@ -406,7 +408,8 @@ pa64_solib_create_inferior_hook (int from_tty)
/* Make sure the dynamic linker's really a useful object. */
if (!bfd_check_format (tmp_bfd, bfd_object))
{
- warning (_("Unable to grok dynamic linker %s as an object file"), buf);
+ warning (_("Unable to grok dynamic linker %s as an object file"),
+ buf);
bfd_close (tmp_bfd);
return;
}