Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
At least. ignore ignorable
[simgrid.git] / src / xbt / xbt_log_appender_file.c
index c63b724..3c72683 100644 (file)
@@ -8,7 +8,7 @@
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
 #include "xbt/sysdep.h"
-#include "xbt/log.h"
+#include "xbt/log_private.h"
 #include <stdio.h>
 
 /**
@@ -19,9 +19,9 @@ extern const char *xbt_log_priority_names[7];
 
 
 static void append_file(xbt_log_appender_t this_appender,
-                       char *str) {
+                        char *str) {
 
-  fprintf((FILE*)(this_appender->data), str);
+  fprintf((FILE*)(this_appender->data), "%s", str);
 }
 
 xbt_log_appender_t xbt_log_appender_file_new(char *arg){