asb2m10 / jsusfx

Opensource Jesusonic FX implementation
Other
69 stars 13 forks source link

fails to build with '-Werror=format-security' #13

Closed umlaeute closed 7 years ago

umlaeute commented 7 years ago

compilation of the Pd-externals fails with:

jsusfx_pd.cpp:43:21: error: format not a string literal and no format arguments [-Werror=format-security]
         error(output);

as error(const char*fmt, ...) should really be called as

error("%s", output);