summaryrefslogtreecommitdiff
path: root/usr.bin/make/error.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/make/error.c')
-rw-r--r--usr.bin/make/error.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/make/error.c b/usr.bin/make/error.c
index 0b9278a0c48..d8cab775d30 100644
--- a/usr.bin/make/error.c
+++ b/usr.bin/make/error.c
@@ -1,5 +1,5 @@
/* $OpenPackages$ */
-/* $OpenBSD: error.c,v 1.12 2004/04/07 13:11:35 espie Exp $ */
+/* $OpenBSD: error.c,v 1.13 2007/09/17 09:28:36 espie Exp $ */
/*
* Copyright (c) 2001 Marc Espie.
@@ -147,7 +147,7 @@ Finish(int errors) /* number of errors encountered in Make_Make */
*/
/* VARARGS */
static void
-ParseVErrorInternal(const char *cfname, unsigned long clineno, int type,
+ParseVErrorInternal(const char *cfname, unsigned long clineno, int type,
const char *fmt, va_list ap)
{
if (cfname)
@@ -173,7 +173,7 @@ Parse_Error(int type, const char *fmt, ...)
va_list ap;
va_start(ap, fmt);
- ParseVErrorInternal(Parse_Getfilename(), Parse_Getlineno(), type,
+ ParseVErrorInternal(Parse_Getfilename(), Parse_Getlineno(), type,
fmt, ap);
va_end(ap);
}