Module Name: src
Committed By: dholland
Date: Mon Mar 12 19:21:08 UTC 2012
Modified Files:
src/sys/kern: subr_prf.c
Log Message:
Repeated typo/varargs anachronism in comments.
To generate a diff of this commit:
cvs rdiff -u -r1.148 -r1.149 src/sys/kern/subr_prf.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/kern/subr_prf.c
diff -u src/sys/kern/subr_prf.c:1.148 src/sys/kern/subr_prf.c:1.149
--- src/sys/kern/subr_prf.c:1.148 Thu Nov 24 01:45:39 2011
+++ src/sys/kern/subr_prf.c Mon Mar 12 19:21:07 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: subr_prf.c,v 1.148 2011/11/24 01:45:39 christos Exp $ */
+/* $NetBSD: subr_prf.c,v 1.149 2012/03/12 19:21:07 dholland Exp $ */
/*-
* Copyright (c) 1986, 1988, 1991, 1993
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_prf.c,v 1.148 2011/11/24 01:45:39 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_prf.c,v 1.149 2012/03/12 19:21:07 dholland Exp $");
#include "opt_ddb.h"
#include "opt_ipkdb.h"
@@ -342,7 +342,7 @@ log(int level, const char *fmt, ...)
}
/*
- * vlog: write to the log buffer [already have va_alist]
+ * vlog: write to the log buffer [already have va_list]
*/
void
@@ -1001,7 +1001,7 @@ printf(const char *fmt, ...)
/*
* vprintf: print a message to the console and the log [already have
- * va_alist]
+ * va_list]
*/
void
@@ -1036,7 +1036,7 @@ sprintf(char *bf, const char *fmt, ...)
}
/*
- * vsprintf: print a message to a buffer [already have va_alist]
+ * vsprintf: print a message to a buffer [already have va_list]
*/
int
@@ -1067,7 +1067,7 @@ snprintf(char *bf, size_t size, const ch
}
/*
- * vsnprintf: print a message to a buffer [already have va_alist]
+ * vsnprintf: print a message to a buffer [already have va_list]
*/
int
vsnprintf(char *bf, size_t size, const char *fmt, va_list ap)