Fix -Wstring-concatenation warning.

Fix the following clang warning:
gcc/spellcheck.c:477:3: warning: suspicious concatenation of string literals in an array initialization;
did you mean to separate the elements with a comma? [-Wstring-concatenation]

gcc/ChangeLog:

	* spellcheck.c: Add missing comma in initialization.
This commit is contained in:
Martin Liska 2021-03-15 09:27:32 +01:00
parent 52b67943d1
commit b516a15371

View File

@ -473,7 +473,7 @@ static const char * const test_data[] = {
"foo",
"food",
"boo",
"1234567890123456789012345678901234567890123456789012345678901234567890"
"1234567890123456789012345678901234567890123456789012345678901234567890",
"abc",
"ac",
"ca",