diff options
author | Alan Modra <amodra@gmail.com> | 2000-04-07 04:34:50 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2000-04-07 04:34:50 +0000 |
commit | 37cc8ec1be0959c1878e79fd2baed888da4a2775 (patch) | |
tree | 3f0c84ec0246e8da024b05540c58b082c583dd31 /binutils/rescoff.c | |
parent | d311cd50fc8c3fc9b344cc2a893572d6c0ae44d7 (diff) | |
download | gdb-37cc8ec1be0959c1878e79fd2baed888da4a2775.zip gdb-37cc8ec1be0959c1878e79fd2baed888da4a2775.tar.gz gdb-37cc8ec1be0959c1878e79fd2baed888da4a2775.tar.bz2 |
A mostly cosmetic tidy up of warnings and error message reporting.
Diffstat (limited to 'binutils/rescoff.c')
-rw-r--r-- | binutils/rescoff.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/binutils/rescoff.c b/binutils/rescoff.c index 64cf572..45161c3 100644 --- a/binutils/rescoff.c +++ b/binutils/rescoff.c @@ -142,9 +142,7 @@ read_coff_rsrc (filename, target) sec = bfd_get_section_by_name (abfd, ".rsrc"); if (sec == NULL) { - fprintf (stderr, _("%s: %s: no resource section\n"), program_name, - filename); - xexit (1); + fatal (_("%s: no resource section"), filename); } size = bfd_section_size (abfd, sec); |