Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.bin/make Remove stray extra newline in error message.
details: https://anonhg.NetBSD.org/src/rev/c06f63e203a8
branches: trunk
changeset: 762422:c06f63e203a8
user: dholland <dholland%NetBSD.org@localhost>
date: Sun Feb 20 20:15:36 2011 +0000
description:
Remove stray extra newline in error message.
diffstat:
usr.bin/make/parse.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (35 lines):
diff -r 93960f6d8ed3 -r c06f63e203a8 usr.bin/make/parse.c
--- a/usr.bin/make/parse.c Sun Feb 20 19:49:28 2011 +0000
+++ b/usr.bin/make/parse.c Sun Feb 20 20:15:36 2011 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: parse.c,v 1.173 2010/12/25 21:39:11 dholland Exp $ */
+/* $NetBSD: parse.c,v 1.174 2011/02/20 20:15:36 dholland Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -69,14 +69,14 @@
*/
#ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: parse.c,v 1.173 2010/12/25 21:39:11 dholland Exp $";
+static char rcsid[] = "$NetBSD: parse.c,v 1.174 2011/02/20 20:15:36 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.173 2010/12/25 21:39:11 dholland Exp $");
+__RCSID("$NetBSD: parse.c,v 1.174 2011/02/20 20:15:36 dholland Exp $");
#endif
#endif /* not lint */
#endif
@@ -2665,7 +2665,7 @@
line = ParseGetLine(PARSE_RAW, &lineLength);
if (line == NULL) {
Parse_Error(PARSE_FATAL,
- "Unexpected end of file in for loop.\n");
+ "Unexpected end of file in for loop.");
break;
}
} while (For_Accum(line));
Home |
Main Index |
Thread Index |
Old Index