summaryrefslogtreecommitdiffstats
path: root/lib/libc
diff options
context:
space:
mode:
authorbrad <brad@openbsd.org>2004-09-25 06:35:50 +0000
committerbrad <brad@openbsd.org>2004-09-25 06:35:50 +0000
commit706dbe2a07d43fa8aaeca0823748f2adb49bc6a5 (patch)
tree20ac988ee9d66f450e6d0cd4ae23295d55e1fb01 /lib/libc
parentRemove aapic, ok deraadt@ (diff)
downloadwireguard-openbsd-706dbe2a07d43fa8aaeca0823748f2adb49bc6a5.tar.xz
wireguard-openbsd-706dbe2a07d43fa8aaeca0823748f2adb49bc6a5.zip
typo fix, from the original diff in PR 3932
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/stdio/vfprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdio/vfprintf.c b/lib/libc/stdio/vfprintf.c
index d703fa3713c..60445e7549e 100644
--- a/lib/libc/stdio/vfprintf.c
+++ b/lib/libc/stdio/vfprintf.c
@@ -31,7 +31,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: vfprintf.c,v 1.26 2004/09/25 02:33:41 deraadt Exp $";
+static char *rcsid = "$OpenBSD: vfprintf.c,v 1.27 2004/09/25 06:35:50 brad Exp $";
#endif /* LIBC_SCCS and not lint */
/*
@@ -812,7 +812,7 @@ error:
* Find all arguments when a positional parameter is encountered. Returns a
* table, indexed by argument number, of pointers to each arguments. The
* initial argument table should be an array of STATIC_ARG_TBL_SIZE entries.
- * It will be replaces with a mmap-ed one if it overflows (malloc cannot be
+ * It will be replaced with a mmap-ed one if it overflows (malloc cannot be
* used since we are attempting to make snprintf thread safe, and alloca is
* problematic since we have nested functions..)
*/