1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-14 10:09:48 +00:00

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:
Rodney W. Grimes 1995-05-17 01:03:56 +00:00
parent 4ea606879a
commit 58d8a5e922
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=8562
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