git: f91301cc792c - main - strfmon_test: Fix typo and remove extra space
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 25 Oct 2022 21:51:19 UTC
The branch main has been updated by kib:
URL: https://cgit.FreeBSD.org/src/commit/?id=f91301cc792c27c5e3e179b606dd8271a624744b
commit f91301cc792c27c5e3e179b606dd8271a624744b
Author: Jose Luis Duran <jlduran@gmail.com>
AuthorDate: 2022-10-16 03:04:44 +0000
Commit: Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2022-10-25 21:28:33 +0000
strfmon_test: Fix typo and remove extra space
Reviewed by: kib
PR: 267282
Github PR: #619
MFC after: 1 week
---
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);
}