diff options
author | peter <peter@FreeBSD.org> | 1996-09-18 06:33:32 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-09-18 06:33:32 +0000 |
commit | 1a3f29413527d7fd7f8021a5fbc05fac67aadf16 (patch) | |
tree | 7f6c25dfd7aaf9a559ec96373ce658059105fad4 /contrib/gcc | |
parent | f64632475d8f0911c59637bcbbf32dfc80c78aa6 (diff) | |
download | FreeBSD-src-1a3f29413527d7fd7f8021a5fbc05fac67aadf16.zip FreeBSD-src-1a3f29413527d7fd7f8021a5fbc05fac67aadf16.tar.gz |
Do not print two \n's in a fatal error message.
Obtained from: bde
Diffstat (limited to 'contrib/gcc')
-rw-r--r-- | contrib/gcc/cp/g++.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/gcc/cp/g++.c b/contrib/gcc/cp/g++.c index f694898..efb6231 100644 --- a/contrib/gcc/cp/g++.c +++ b/contrib/gcc/cp/g++.c @@ -415,7 +415,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 |