diff options
author | Florian Weimer <fweimer@redhat.com> | 2019-02-01 14:04:42 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2019-02-01 14:15:50 +0100 |
commit | 6175507c06de56e03407004bd2f289ed2cce034d (patch) | |
tree | e605d5f474fce124f69cae9c93dbd82905673071 /support/support_test_compare_string.c | |
parent | baef19438741905fde4e740ee8f3fcf856d4e820 (diff) | |
download | glibc-6175507c06de56e03407004bd2f289ed2cce034d.tar glibc-6175507c06de56e03407004bd2f289ed2cce034d.tar.gz glibc-6175507c06de56e03407004bd2f289ed2cce034d.tar.bz2 glibc-6175507c06de56e03407004bd2f289ed2cce034d.zip |
support: Correct error message for TEST_COMPARE_STRING
It should say "string", not "blob".
Diffstat (limited to 'support/support_test_compare_string.c')
-rw-r--r-- | support/support_test_compare_string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/support_test_compare_string.c b/support/support_test_compare_string.c index d6d6d551de..36b248c9c1 100644 --- a/support/support_test_compare_string.c +++ b/support/support_test_compare_string.c @@ -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 |