strings.c:273: possible missing comma ?
Brought to you by:
cminyard
I just tried to compile the package with new C compiler clang-14. It said:
strings.c:273:5: warning: suspicious concatenation of string literals in an array initialization; did you mean to separate the elements with a comma? [-Wstring-concatenation]
Source code is
"meters",
"cubic centimeters"
"cubic meters",
Maybe better code:
"meters",
"cubic centimeters",
"cubic meters",
Yep, I'm pushing up a fix now.
Thanks,
-corey