Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
update
[simgrid.git] / examples / msg / io / file_unlink.c
index 8a36a78..d9f6c01 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