diff options
author | Richard Stallman <rms@gnu.org> | 1993-07-23 18:36:41 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-07-23 18:36:41 +0000 |
commit | 1df80ae41537e12059b827efb98c1154a592bcd1 (patch) | |
tree | f6458a626d24f66be565557ffeb07142310729a0 | |
parent | 2a64e92d3007989ba24d7227d3615fae890bde5e (diff) | |
download | gcc-1df80ae41537e12059b827efb98c1154a592bcd1.zip gcc-1df80ae41537e12059b827efb98c1154a592bcd1.tar.gz gcc-1df80ae41537e12059b827efb98c1154a592bcd1.tar.bz2 |
(main): Improve "No input files" error message.
From-SVN: r4971
-rw-r--r-- | gcc/gcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3750,7 +3750,7 @@ main (argc, argv) } if (n_infiles == 0) - fatal ("No input files specified."); + fatal ("No input files"); /* Make a place to record the compiler output file names that correspond to the input files. */ |