TESTS: Fix clang++ warning

./test/common/md5.h:17:3: warning: suspicious concatenation of string literals in an array initialization; did you mean to separate the elements with a comma? [-Wstring-concatenation]
                "345678901234567890"
This commit is contained in:
Roland van Laar 2022-10-06 18:03:03 +02:00
parent 9f258474bc
commit 407902599e

View File

@ -13,8 +13,8 @@ static const char *md5_test_string[] = {
"message digest",
"abcdefghijklmnopqrstuvwxyz",
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
"12345678901234567890123456789012345678901234567890123456789012" \
"345678901234567890"
("12345678901234567890123456789012345678901234567890123456789012"
"345678901234567890")
};
static const char *md5_test_digest[] = {