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

Public GIT Repository
resolve cmakelists conflict
[simgrid.git] / examples / msg / io / file_unlink.c
index 8a36a78778d7787b3eda31d1d7f63ccc8678215b..d9f6c01a61811f862a0dfbac2e6dfabc598b5bec 100644 (file)
@@ -59,7 +59,7 @@ int host(int argc, char *argv[])
 
   // Write into the new file
   write = MSG_file_write(ptr,100000,sizeof(char*),file);  // Write for 100Ko
-  XBT_INFO("\tHaving write %.1f \ton %s",write,file->name);
+  XBT_INFO("\tHave written %8.1f on %s",write,file->name);
 
   // Print the stat
   MSG_file_stat(file,&stat);
@@ -121,7 +121,6 @@ int main(int argc, char **argv)
 
   res = MSG_main();
   XBT_INFO("Simulation time %g", MSG_get_clock());
-  MSG_clean();
   if (res == MSG_OK)
     return 0;
   else