From 626e18ea3f0de2ff5ed906ceca18a3faf44b1759 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Sun, 4 Jul 1993 18:02:51 +0000 Subject: [PATCH] (error, fatal, fatal_perror): Say collect2, not collect. From-SVN: r4839 --- gcc/collect2.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/collect2.c b/gcc/collect2.c index d311b66..fcf9ecd 100644 --- a/gcc/collect2.c +++ b/gcc/collect2.c @@ -277,7 +277,7 @@ fatal_perror (string, arg1, arg2, arg3) { int e = errno; - fprintf (stderr, "collect: "); + fprintf (stderr, "collect2: "); fprintf (stderr, string, arg1, arg2, arg3); fprintf (stderr, ": %s\n", my_strerror (e)); my_exit (1); @@ -289,7 +289,7 @@ static void fatal (string, arg1, arg2, arg3) char *string; { - fprintf (stderr, "collect: "); + fprintf (stderr, "collect2: "); fprintf (stderr, string, arg1, arg2, arg3); fprintf (stderr, "\n"); my_exit (1); @@ -301,7 +301,7 @@ static void error (string, arg1, arg2, arg3, arg4) char *string; { - fprintf (stderr, "collect: "); + fprintf (stderr, "collect2: "); fprintf (stderr, string, arg1, arg2, arg3, arg4); fprintf (stderr, "\n"); } -- 2.7.4