The current codebase for 610b trigger those warnings: -Wformat-security -Wunused-const-variable -Wunused-variable -Wself-assign -Wformat here is a patch that fix some of those.
You can find grep -r Info'(' | grep define to find other spot that trigger this warning. I wanted to fix with #define STRING "e" but I can't test on all OS so I let you test it.
The current codebase for 610b trigger those warnings:
-Wformat-security -Wunused-const-variable -Wunused-variable -Wself-assign -Wformat
here is a patch that fix some of those.You can find
grep -r Info'(' | grep define
to find other spot that trigger this warning. I wanted to fix with#define STRING "e"
but I can't test on all OS so I let you test it.