Make error message for no input files specified consistent across all

three compilers.

Submitted by:	Thomas Graichen <graichen@sirius.physik.fu-berlin.de>
This commit is contained in:
rgrimes 1995-05-17 01:03:56 +00:00
parent 7ccad1d5f6
commit 822ee59bc8
3 changed files with 3 additions and 3 deletions

View File

@ -378,7 +378,7 @@ main (argc, argv)
programname = p;
if (argc == 1)
fatal ("No input files specified.\n");
fatal ("No input files specified");
#ifndef __MSDOS__
/* We do a little magic to find out where the main gcc executable

View File

@ -4366,7 +4366,7 @@ main (argc, argv)
}
if (n_infiles == 0)
fatal ("No input files");
fatal ("No input files specified");
/* Make a place to record the compiler output file names
that correspond to the input files. */

View File

@ -377,7 +377,7 @@ main (argc, argv)
programname = p;
if (argc == 1)
fatal ("No input files specified.\n");
fatal ("No input files specified");
#ifndef __MSDOS__
/* We do a little magic to find out where the main gcc executable