diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-30 23:47:33 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-30 23:47:33 +0000 |
commit | 12466ba9f57384832944d66118a66222663036ab (patch) | |
tree | ee0a1b4dda6ebbed9d9bcf397502f898ce5536a1 /gcc/diagnostic.c | |
parent | dea958cbe7a29e6028732d405aa1c139bce5a464 (diff) | |
download | gcc-12466ba9f57384832944d66118a66222663036ab.tar.gz |
* diagnostic.c (fatal): Fix word wrap.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39356 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/diagnostic.c')
-rw-r--r-- | gcc/diagnostic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/diagnostic.c b/gcc/diagnostic.c index 43439f6e4b8..9a9948029a2 100644 --- a/gcc/diagnostic.c +++ b/gcc/diagnostic.c @@ -1432,8 +1432,8 @@ fatal VPARAMS ((const char *msgid, ...)) report_diagnostic (&dc); va_end (ap); - fprintf (stderr, "Please submit a full bug report, with preprocessed source\n"); - fprintf (stderr, "if appropriate. See %s for instructions.\n", GCCBUGURL); + fprintf (stderr, "Please submit a full bug report, with preprocessed source if appropriate.\n"); + fprintf (stderr, "See %s for instructions.\n", GCCBUGURL); exit (FATAL_EXIT_CODE); } |