summaryrefslogtreecommitdiff
path: root/gdb/solib-aix5.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/solib-aix5.c')
-rw-r--r--gdb/solib-aix5.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/gdb/solib-aix5.c b/gdb/solib-aix5.c
index 3532be453e0..3c6918355ea 100644
--- a/gdb/solib-aix5.c
+++ b/gdb/solib-aix5.c
@@ -335,7 +335,7 @@ open_symbol_file_object (void *from_ttyp)
if (sos == NULL)
{
- warning ("Could not find name of main executable in map file");
+ warning (_("Could not find name of main executable in map file"));
return 0;
}
@@ -480,7 +480,7 @@ enable_break (void)
/* 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);
goto bkpt_at_symbol;
}
@@ -529,7 +529,7 @@ enable_break (void)
/* For whatever reason we couldn't set a breakpoint in the dynamic
linker. Warn and drop into the old code. */
bkpt_at_symbol:
- warning ("Unable to find dynamic linker breakpoint function.\nGDB will be unable to debug shared library initializers\nand track explicitly loaded dynamic code.");
+ warning (_("Unable to find dynamic linker breakpoint function.\nGDB will be unable to debug shared library initializers\nand track explicitly loaded dynamic code."));
}
/* Nothing good happened. */
@@ -684,7 +684,7 @@ map_index_vs_section_name_okay (int idx, const char *name)
return idx == okay[i].idx;
}
- warning ("solib-aix5.c: Ignoring section %s when relocating the executable\n",
+ warning (_("Ignoring section %s when relocating the executable."),
name);
return 0;
}
@@ -707,7 +707,7 @@ aix5_relocate_main_executable (void)
/* Make sure we actually have some mappings to work with. */
if (so == NULL)
{
- warning ("Could not find main executable in map file");
+ warning (_("Could not find main executable in map file"));
do_cleanups (old_chain);
return;
}
@@ -798,7 +798,7 @@ aix5_solib_create_inferior_hook (void)
if (!enable_break ())
{
- warning ("shared library handler failed to enable breakpoint");
+ warning (_("shared library handler failed to enable breakpoint"));
return;
}
}
@@ -908,7 +908,7 @@ aix5_find_gate_addresses (CORE_ADDR *start, CORE_ADDR *end)
/* Make sure we actually have some mappings to work with. */
if (so == NULL)
{
- warning ("Could not find gate page in map file");
+ warning (_("Could not find gate page in map file"));
*start = 0;
*end = 0;
do_cleanups (old_chain);