The branch main has been updated by jlduran: URL: https://cgit.FreeBSD.org/src/commit/?id=91e7f19ec4056587a85c1461a4f34a6d5d4b7b52
commit 91e7f19ec4056587a85c1461a4f34a6d5d4b7b52 Author: Jose Luis Duran <[email protected]> AuthorDate: 2025-11-23 16:58:55 +0000 Commit: Jose Luis Duran <[email protected]> CommitDate: 2025-11-26 02:50:49 +0000 strfmon: Fix typo s/poistion/position/ MFC after: 1 week --- lib/libc/stdlib/strfmon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libc/stdlib/strfmon.c b/lib/libc/stdlib/strfmon.c index 68a36a6d5567..230d194233f5 100644 --- a/lib/libc/stdlib/strfmon.c +++ b/lib/libc/stdlib/strfmon.c @@ -106,7 +106,7 @@ vstrfmon_l(char *__restrict s, size_t maxsize, locale_t loc, const char *__restrict format, va_list ap) { char *dst; /* output destination pointer */ - const char *fmt; /* current format poistion pointer */ + const char *fmt; /* current format position pointer */ struct lconv *lc; /* pointer to lconv structure */ char *asciivalue; /* formatted double pointer */
