diff options
Diffstat (limited to 'gcc/cpplib.c')
-rw-r--r-- | gcc/cpplib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cpplib.c b/gcc/cpplib.c index 3f3e212..6517deb 100644 --- a/gcc/cpplib.c +++ b/gcc/cpplib.c @@ -5999,7 +5999,7 @@ push_parse_file (pfile, fname) if (fd < 0) { cpp_perror_with_name (pfile, pend->arg); - return FAILURE_EXIT_CODE; + return FATAL_EXIT_CODE; } cpp_push_buffer (pfile, NULL, 0); finclude (pfile, fd, pend->arg, 0, NULL_PTR); @@ -6164,7 +6164,7 @@ push_parse_file (pfile, fname) if (fd < 0) { cpp_perror_with_name (pfile, pend->arg); - return FAILURE_EXIT_CODE; + return FATAL_EXIT_CODE; } cpp_push_buffer (pfile, NULL, 0); finclude (pfile, fd, pend->arg, 0, NULL_PTR); |