]> AND Public Git Repository - simgrid.git/blobdiff - src/xbt/xbt_log_appender_file.c
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Better fix to the comparison between signed and unsigned int around dynar size: chang...
[simgrid.git] / src / xbt / xbt_log_appender_file.c
index 4ffd7ebe0980faac2baec0fef4f855b4b193fa38..83af8a5b07b44117d8d9d993ff9df7c1d950e9d1 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>
 
 /**
@@ -21,13 +21,13 @@ extern const char *xbt_log_priority_names[7];
 static void append_file(xbt_log_appender_t this_appender,
                        char *str) {
 
-  fprintf((FILE*)(this_appender->data), str);
+  fprintf((FILE*)(this_appender->data), "%s", str);
 }
 
-xbt_log_appender_t xbt_log_appender_file_new(xbt_log_layout_t lout){
+xbt_log_appender_t xbt_log_appender_file_new(char *arg){
   xbt_log_appender_t res = xbt_new0(s_xbt_log_appender_t,1);
-  res->layout = lout;
   res->do_append = append_file;
+  res->free_ = NULL;
   res->data = (void*)stderr;
   return res;
 }