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
7ccad1d5f6
commit
822ee59bc8
@ -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