aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Luis Duran <jlduran@gmail.com>2022-10-16 03:04:44 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2022-10-25 21:28:33 +0000
commitf91301cc792c27c5e3e179b606dd8271a624744b (patch)
treedab7a7928a6f416820c3e252362ddff005861a2d
parent92e190f11fe872f7b1f1a1a22c1f10edeb3b7f8d (diff)
downloadsrc-f91301cc792c27c5e3e179b606dd8271a624744b.tar.gz
src-f91301cc792c27c5e3e179b606dd8271a624744b.zip
strfmon_test: Fix typo and remove extra space
Reviewed by: kib PR: 267282 Github PR: #619 MFC after: 1 week
-rw-r--r--lib/libc/tests/stdlib/strfmon_test.c4
1 files 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);
}