Module Name:    src
Committed By:   dholland
Date:           Sun Feb 20 20:17:35 UTC 2011

Modified Files:
        src/usr.bin/make: parse.c

Log Message:
Remove the extra blank line after "Fatal errors encountered -- cannot
continue". This has been there since 1.1 but I don't think it was
intentional. If anyone actually cares about the blank line being there
for some reason, go ahead and revert this change...


To generate a diff of this commit:
cvs rdiff -u -r1.174 -r1.175 src/usr.bin/make/parse.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/make/parse.c
diff -u src/usr.bin/make/parse.c:1.174 src/usr.bin/make/parse.c:1.175
--- src/usr.bin/make/parse.c:1.174	Sun Feb 20 20:15:36 2011
+++ src/usr.bin/make/parse.c	Sun Feb 20 20:17:35 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: parse.c,v 1.174 2011/02/20 20:15:36 dholland Exp $	*/
+/*	$NetBSD: parse.c,v 1.175 2011/02/20 20:17:35 dholland Exp $	*/
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -69,14 +69,14 @@
  */
 
 #ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: parse.c,v 1.174 2011/02/20 20:15:36 dholland Exp $";
+static char rcsid[] = "$NetBSD: parse.c,v 1.175 2011/02/20 20:17:35 dholland Exp $";
 #else
 #include <sys/cdefs.h>
 #ifndef lint
 #if 0
 static char sccsid[] = "@(#)parse.c	8.3 (Berkeley) 3/19/94";
 #else
-__RCSID("$NetBSD: parse.c,v 1.174 2011/02/20 20:15:36 dholland Exp $");
+__RCSID("$NetBSD: parse.c,v 1.175 2011/02/20 20:17:35 dholland Exp $");
 #endif
 #endif /* not lint */
 #endif
@@ -2933,7 +2933,7 @@
     if (fatals) {
 	(void)fflush(stdout);
 	(void)fprintf(stderr,
-	    "%s: Fatal errors encountered -- cannot continue\n",
+	    "%s: Fatal errors encountered -- cannot continue",
 	    progname);
 	PrintOnError(NULL, NULL);
 	exit(1);

Reply via email to