]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - support/support_test_compare_string.c
nptl: Move pthread_attr_setinheritsched implementation into libc.
[thirdparty/glibc.git] / support / support_test_compare_string.c
index a76ba8eda7782d9d0426f33db85dcae6ed3da62e..9f1b1a5af488ce9489bbbebc165fbcaecb16bcf5 100644 (file)
@@ -1,5 +1,5 @@
 /* Check two strings for equality.
-   Copyright (C) 2018 Free Software Foundation, Inc.
+   Copyright (C) 2018-2019 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -14,7 +14,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; if not, see
-   <http://www.gnu.org/licenses/>.  */
+   <https://www.gnu.org/licenses/>.  */
 
 #include <stdio.h>
 #include <stdlib.h>
@@ -75,7 +75,7 @@ support_test_compare_string (const char *left, const char *right,
       || memcmp (left, right, left_length) != 0)
     {
       support_record_failure ();
-      printf ("%s:%d: error: blob comparison failed\n", file, line);
+      printf ("%s:%d: error: string comparison failed\n", file, line);
       if (left_length == right_length && right != NULL && left != NULL)
         printf ("  string length: %zu bytes\n", left_length);
       else