openlink / iODBC

An open-source ODBC driver manager and SDK that facilitates the development of database-independent applications on linux, freebsd, unix and MacOS X platforms.
http://www.iodbc.org/
Other
157 stars 53 forks source link

Info.c:740: possible missing comma ? #72

Closed dcb314 closed 2 years ago

dcb314 commented 2 years ago

I just tried to compile the package with new C compiler clang-14.

It said:

Info.c:740:3: warning: suspicious concatenation of string literals in an array initialization; did you mean to separat e the elements with a comma? [-Wstring-concatenation]

Source code is

"SQL_CVT_DOUBLE", "SQL_CVT_VARCHAR" "SQL_CVT_LONGVARCHAR",

Suggest new code

"SQL_CVT_DOUBLE", "SQL_CVT_VARCHAR", "SQL_CVT_LONGVARCHAR",