]> git.ipfire.org Git - thirdparty/gnulib.git/commitdiff
xvasprintf-tests: Fix typo.
authorBruno Haible <bruno@clisp.org>
Wed, 11 Mar 2026 17:15:58 +0000 (18:15 +0100)
committerBruno Haible <bruno@clisp.org>
Wed, 11 Mar 2026 17:15:58 +0000 (18:15 +0100)
* tests/test-xvasprintf.c (test_xasprintf): Test xasprintf, not
my_xasprintf.

ChangeLog
tests/test-xvasprintf.c

index 0d5cbd16728c21a73d7b198771f80663c747d976..6dd220d9f704256214595a475ef3cc934bc1fce6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2026-03-11  Bruno Haible  <bruno@clisp.org>
+
+       xvasprintf-tests: Fix typo.
+       * tests/test-xvasprintf.c (test_xasprintf): Test xasprintf, not
+       my_xasprintf.
+
 2026-03-09  Bruno Haible  <bruno@clisp.org>
 
        c32tolower, c32toupper: Fix for Turkish locale in Cygwin 3.6.7.
index 219d7627d0a64e1f755c305f19af16553c3fa3a8..724c4e2e7d668d30ffd4a42cef5c614802cc2b84 100644 (file)
@@ -117,7 +117,7 @@ test_xasprintf (void)
   ASSERT (streq (result, "foobar"));
   free (result);
 
-  result = my_xasprintf ("%s%sbaz", "foo", "bar");
+  result = xasprintf ("%s%sbaz", "foo", "bar");
   ASSERT (result != NULL);
   ASSERT (streq (result, "foobarbaz"));
   free (result);