From 74c9467af51e9d9b606c1592fd4cfdecbd1ddcb3 Mon Sep 17 00:00:00 2001 From: Zack Weinberg Date: Thu, 4 Feb 1999 13:06:30 +0000 Subject: cpperror.c (cpp_print_containing_files): Fix formatting bug induced by merge. 1999-02-04 16:04 -0500 Zack Weinberg * cpperror.c (cpp_print_containing_files): Fix formatting bug induced by merge. From-SVN: r25025 --- gcc/cpperror.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'gcc/cpperror.c') diff --git a/gcc/cpperror.c b/gcc/cpperror.c index 4a4cc07..af01881 100644 --- a/gcc/cpperror.c +++ b/gcc/cpperror.c @@ -63,16 +63,16 @@ cpp_print_containing_files (pfile) if (first) { first = 0; - cpp_notice ("In file included from "); + cpp_notice ("In file included from %s:%ld", + ip->nominal_fname, line); } else - cpp_notice (",\n from "); + cpp_message (pfile, -1, ",\n from %s:%ld", + ip->nominal_fname, line); } - - fprintf (stderr, " from %s:%ld", ip->nominal_fname, line); } if (! first) - fprintf (stderr, ":\n"); + fputs (":\n", stderr); /* Record we have printed the status as of this time. */ pfile->input_stack_listing_current = 1; -- cgit v1.1