Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Change parameters order for msg_file_read, msg_file_write and in all their internal...
[simgrid.git] / examples / msg / io / file_unlink.c
index ec6ea5b..a604a18 100644 (file)
@@ -31,7 +31,7 @@ int host(int argc, char *argv[])
 {
   msg_file_t file = NULL;
   char* mount = xbt_strdup("/home");
-  size_t write;
+  sg_storage_size_t write;
 
   // First open
   XBT_INFO("\tOpen file '%s'",FILENAME1);
@@ -46,7 +46,7 @@ int host(int argc, char *argv[])
   file = MSG_file_open(mount,FILENAME1, NULL);
 
   // Write into the new file
-  write = MSG_file_write(100000,file);  // Write for 100Ko
+  write = MSG_file_write(file,100000);  // Write for 100Ko
   XBT_INFO("\tHave written %zu on %s",write,file->fullname);
 
   // Close the file