<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Mon, Sep 29, 2014 at 8:12 PM, Sérgio Basto <span dir="ltr">&lt;<a href="mailto:sergio@serjux.com" target="_blank">sergio@serjux.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">&gt; src/debug.cpp: In function &#39;void output_debug_message(const char*, ...)&#39;:<br>
&gt; src/debug.cpp:31:21: error: format not a string literal and no format<br>
&gt; arguments [-Werror=format-security]<br>
&gt;       fprintf(fp, text);<br>
&gt;                       ^<br>
<br>
</span>is easy :<br>
-      printf(fp, text);<br>
+      printf(fp, &quot;%s&quot;, text);</blockquote><div> </div><div>Sorry for the noise, guys. I think I have misinterpreted a warning for an error :-/ It was almost trivial to fix. <br><br></div><div>I&#39;ll commit a new version soon.<br></div><div><br></div><div>Bye,<br><br>Andrea<br><br></div></div></div></div>