On Seg, 2014-09-29 at 11:06 -0400, Andrew Schultz wrote:
Andrea Musuruane wrote:
> On Mon, Sep 1, 2014 at 3:16 AM, Sérgio Basto <sergio(a)serjux.com
> <mailto:sergio@serjux.com>> wrote:
>
>
http://buildsys.rpmfusion.org/logs/fedora-development-rpmfusion_nonfree/2...
>
>
> I have no idea how to fix this issue. I need help. Thanks.
src/debug.cpp: In function 'void output_debug_message(const char*, ...)':
src/debug.cpp:31:21: error: format not a string literal and no format
arguments [-Werror=format-security]
fprintf(fp, text);
^
is easy :
- printf(fp, text);
+ printf(fp, "%s", text);
--
Sérgio M. B.