From 48a4d49b284cf61c84ceb81bcccdbc1264fe5b83 Mon Sep 17 00:00:00 2001 From: dholland Date: Mon, 12 Mar 2012 19:21:07 +0000 Subject: [PATCH] Repeated typo/varargs anachronism in comments. --- sys/kern/subr_prf.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sys/kern/subr_prf.c b/sys/kern/subr_prf.c index 55dd2e6dd95c..50b37ef8ccb9 100644 --- a/sys/kern/subr_prf.c +++ b/sys/kern/subr_prf.c @@ -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 -__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 char *fmt, ...) } /* - * 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)