diff options
Diffstat (limited to 'gcc/genoutput.c')
-rwxr-xr-x | gcc/genoutput.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/genoutput.c b/gcc/genoutput.c index 9b57027..7774d9c 100755 --- a/gcc/genoutput.c +++ b/gcc/genoutput.c @@ -967,7 +967,7 @@ fatal VPROTO ((const char *format, ...)) vfprintf (stderr, format, ap); va_end (ap); fprintf (stderr, "\n"); - exit (FATAL_EXIT_CODE); + exit (EXIT_FAILURE); } /* More 'friendly' abort that prints the line and file. @@ -1019,7 +1019,7 @@ main (argc, argv) if (infile == 0) { perror (argv[1]); - exit (FATAL_EXIT_CODE); + exit (EXIT_FAILURE); } init_rtl (); @@ -1054,7 +1054,7 @@ main (argc, argv) fflush (stdout); exit (ferror (stdout) != 0 || have_error - ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE); + ? EXIT_FAILURE : EXIT_SUCCESS); /* NOTREACHED */ return 0; |