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/srconv.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/srconv.c')
-rw-r--r-- | binutils/srconv.c | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/binutils/srconv.c b/binutils/srconv.c index 8b0f2b7..c317d98 100644 --- a/binutils/srconv.c +++ b/binutils/srconv.c @@ -1,5 +1,5 @@ /* srconv.c -- Sysroff conversion program - Copyright (C) 1994, 95, 96, 98, 1999 Free Software Foundation, Inc. + Copyright (C) 1994, 95, 96, 98, 99, 2000 Free Software Foundation, Inc. This file is part of GNU Binutils. @@ -1962,10 +1962,7 @@ main (ac, av) show_usage (stderr, 1); if (strcmp (input_file, output_file) == 0) { - fprintf (stderr, - _("%s: input and output files must be different\n"), - program_name); - exit (1); + fatal (_("input and output files must be different")); } } } @@ -1974,9 +1971,7 @@ main (ac, av) if (!input_file) { - fprintf (stderr, _("%s: no input file specified\n"), - program_name); - exit (1); + fatal (_("no input file specified")); } if (!output_file) @@ -2021,9 +2016,7 @@ main (ac, av) if (!file) { - fprintf (stderr, _("%s: unable to open output file %s\n"), - program_name, output_file); - exit (1); + fatal (_("unable to open output file %s"), output_file); } if (debug) |