When compiling latest release as well as latest git devel version on Mac OS 10.15 (Catalina), I get warnings similar to #379 but also more related to %, respectively:
If it is supposed to get % printed by mvwprintw(), which I understand supports same specifiers as printf(), then it should be %%, not \%. Iirc, \c is simply c when c is not a special character and then the function sees %) in the parameter.
When compiling latest release as well as latest git devel version on Mac OS 10.15 (Catalina), I get warnings similar to #379 but also more related to
%
, respectively:If it is supposed to get
%
printed bymvwprintw()
, which I understand supports same specifiers asprintf()
, then it should be%%
, not\%
. Iirc,\c
is simplyc
whenc
is not a special character and then the function sees%)
in the parameter.