Fix typo in a comment.

This commit is contained in:
uwe 2019-12-08 22:41:42 +00:00
parent 9332bf7c88
commit 1cea4da77d
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: xprintf.c,v 1.21 2010/12/16 22:52:32 joerg Exp $ */
/* $NetBSD: xprintf.c,v 1.22 2019/12/08 22:41:42 uwe Exp $ */
/*
* Copyright 1996 Matt Thomas <matt@3am-software.com>
@ -29,7 +29,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: xprintf.c,v 1.21 2010/12/16 22:52:32 joerg Exp $");
__RCSID("$NetBSD: xprintf.c,v 1.22 2019/12/08 22:41:42 uwe Exp $");
#endif /* not lint */
#include <string.h>
@ -49,7 +49,7 @@ __RCSID("$NetBSD: xprintf.c,v 1.21 2010/12/16 22:52:32 joerg Exp $");
* Non-mallocing printf, for use by malloc and rtld itself.
* This avoids putting in most of stdio.
*
* deals withs formats %x, %p, %s, and %d.
* deals with formats %x, %p, %s, and %d.
*/
size_t
xvsnprintf(char *buf, size_t buflen, const char *fmt, va_list ap)