git: 40fbde93a4fb - stable/13 - strfmon_test: Fix typo and remove extra space
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 01 Nov 2022 00:46:24 UTC
The branch stable/13 has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=40fbde93a4fb60a9f548b2a7c2faab4b19a54062 commit 40fbde93a4fb60a9f548b2a7c2faab4b19a54062 Author: Jose Luis Duran <jlduran@gmail.com> AuthorDate: 2022-10-16 03:04:44 +0000 Commit: Konstantin Belousov <kib@FreeBSD.org> CommitDate: 2022-11-01 00:44:40 +0000 strfmon_test: Fix typo and remove extra space (cherry picked from commit f91301cc792c27c5e3e179b606dd8271a624744b) --- lib/libc/tests/stdlib/strfmon_test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libc/tests/stdlib/strfmon_test.c b/lib/libc/tests/stdlib/strfmon_test.c index 35825ec31b5b..69398091baef 100644 --- a/lib/libc/tests/stdlib/strfmon_test.c +++ b/lib/libc/tests/stdlib/strfmon_test.c @@ -10,7 +10,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * + * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE @@ -59,7 +59,7 @@ ATF_TC_BODY(strfmon_locale_thousands, tc) strlcat(expected, ts, sizeof(expected)); strlcat(expected, "234", sizeof(expected)); - /* We're just testing the thousands separator, not all of strmon. */ + /* We're just testing the thousands separator, not all of strfmon. */ actual[strlen(expected)] = '\0'; ATF_CHECK_STREQ(expected, actual); }