diff options
author | Alan Modra <amodra@gmail.com> | 2010-11-17 03:35:50 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2010-11-17 03:35:50 +0000 |
commit | cc5914eb31109a6481682d9bc5dc7c23fccc024c (patch) | |
tree | d70ec07261ca8ea3e5a599c8ff27df45ae09f687 /binutils/resrc.c | |
parent | f9e6589d8755e896e2b48ebafad988e572eed2e7 (diff) | |
download | gdb-cc5914eb31109a6481682d9bc5dc7c23fccc024c.zip gdb-cc5914eb31109a6481682d9bc5dc7c23fccc024c.tar.gz gdb-cc5914eb31109a6481682d9bc5dc7c23fccc024c.tar.bz2 |
* ar.c (print_contents): Don't internationalize strings without words.
* dwarf.c (process_extended_line_op): Likewise.
(process_debug_info): Likwise.
(display_debug_lines_raw): Likewise.
(display_debug_lines_decoded): Likewise.
(display_debug_abbrev): Likewise.
* readelf.c (process_file_header): Likewise.
(GET_OP): Likewise.
(decode_arm_unwind): Likewise.
(process_mips_specific): Likewise.
* resrc.c (run_cmd): Likewise.
(rcparse_warning): Likewise.
* objdump.c (dump_headers): Don't print "Pg".
Diffstat (limited to 'binutils/resrc.c')
-rw-r--r-- | binutils/resrc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binutils/resrc.c b/binutils/resrc.c index a72a23f..0a14ad2 100644 --- a/binutils/resrc.c +++ b/binutils/resrc.c @@ -281,7 +281,7 @@ run_cmd (char *cmd, const char *redir) if (pid == -1) { - fatal (_("%s %s: %s"), errmsg_fmt, errmsg_arg, strerror (errno)); + fatal ("%s %s: %s", errmsg_fmt, errmsg_arg, strerror (errno)); return 1; } @@ -628,7 +628,7 @@ yyerror (const char *msg) void rcparse_warning (const char *msg) { - fprintf (stderr, _("%s:%d: %s\n"), rc_filename, rc_lineno, msg); + fprintf (stderr, "%s:%d: %s\n", rc_filename, rc_lineno, msg); } /* Die if we get an unexpected end of file. */ |