]> AND Public Git Repository - simgrid.git/blobdiff - examples/msg/io/file_unlink.c
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove debug messages from test, allow it to pass even with enable_debug=OFF.
[simgrid.git] / examples / msg / io / file_unlink.c
index a604a18042dd6b4dac9cea8e73ab48b69013007d..ec901daaefaa6e3514b5dbea334bec6fe30d1add 100644 (file)
@@ -21,6 +21,7 @@
 #include <stdlib.h>
 #include "msg/msg.h"
 #include "surf/surf_private.h"
+#include "inttypes.h"
 
 int host(int argc, char *argv[]);
 
@@ -47,7 +48,7 @@ int host(int argc, char *argv[])
 
   // Write into the new file
   write = MSG_file_write(file,100000);  // Write for 100Ko
-  XBT_INFO("\tHave written %zu on %s",write,file->fullname);
+  XBT_INFO("\tHave written %" PRIu64 " on %s",write,file->fullname);
 
   // Close the file
   XBT_INFO("\tClose file '%s'",file->fullname);