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:
parent
4ea606879a
commit
58d8a5e922
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=8562
@ -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
|
||||
|
@ -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. */
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user