]> Dogcows Code - chaz/openbox/blobdiff - openbox/debug.c
Another problem pointed out by clang
[chaz/openbox] / openbox / debug.c
index 6b92c9ec9dd74f4aec81978282d3ef4e987cb142..db18784cc39342c2559b230a2d406599e55075a6 100644 (file)
@@ -102,11 +102,11 @@ void ob_debug_enable(ObDebugType type, gboolean enable)
 static inline void log_print(FILE *out, const gchar* log_domain,
                              const gchar *level, const gchar *message)
 {
-    fprintf(out, log_domain);
+    fprintf(out, "%s", log_domain);
     fprintf(out, "-");
-    fprintf(out, level);
+    fprintf(out, "%s", level);
     fprintf(out, ": ");
-    fprintf(out, message);
+    fprintf(out, "%s", message);
     fprintf(out, "\n");
     fflush(out);
 }
This page took 0.019881 seconds and 4 git commands to generate.