summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1992-04-29 21:23:10 +0000
committerRoland McGrath <roland@redhat.com>1992-04-29 21:23:10 +0000
commitd052fb99eeaba43660e60d5274f5d498f381c416 (patch)
tree2530b4a43994dcbd23295ec91591791715b2f3ec /misc.c
parentbe3ab15f7189a520401f367c701836fc0c0de6e7 (diff)
downloadgunmake-d052fb99eeaba43660e60d5274f5d498f381c416.tar.gz
Formerly misc.c.~16~
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/misc.c b/misc.c
index d6facc6..d7722d3 100644
--- a/misc.c
+++ b/misc.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1988, 1989, 1990, 1991 Free Software Foundation, Inc.
+/* Copyright (C) 1988, 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
This file is part of GNU Make.
GNU Make is free software; you can redistribute it and/or modify
@@ -216,9 +216,9 @@ fatal (s1, s2, s3, s4, s5, s6)
char *s1, *s2, *s3, *s4, *s5, *s6;
{
if (makelevel == 0)
- fprintf (stderr, "%s: ", program);
+ fprintf (stderr, "%s: *** ", program);
else
- fprintf (stderr, "%s[%u]: ", program, makelevel);
+ fprintf (stderr, "%s[%u]: *** ", program, makelevel);
fprintf (stderr, s1, s2, s3, s4, s5, s6);
fputs (". Stop.\n", stderr);
@@ -260,7 +260,7 @@ makefile_fatal (file, lineno, s1, s2, s3, s4, s5, s6)
unsigned int lineno;
char *s1, *s2, *s3, *s4, *s5, *s6;
{
- fprintf (stderr, "%s:%u: ", file, lineno);
+ fprintf (stderr, "%s:%u: *** ", file, lineno);
fprintf (stderr, s1, s2, s3, s4, s5, s6);
fputs (". Stop.\n", stderr);