X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/03b9cd8063ce997bf46d80291c7e54ec8480ad01..8b1bc235e2747a7705c534c0fdcb0bc1bb8fb499:/examples/msg/io/file_unlink.c diff --git a/examples/msg/io/file_unlink.c b/examples/msg/io/file_unlink.c index e4ddfbf77d..60dcadc25f 100644 --- a/examples/msg/io/file_unlink.c +++ b/examples/msg/io/file_unlink.c @@ -36,7 +36,7 @@ int host(int argc, char *argv[]) // First open XBT_INFO("\tOpen file '%s'",FILENAME1); - file = MSG_file_open(mount,FILENAME1,"rw"); + file = MSG_file_open(mount,FILENAME1); // Unlink the file XBT_INFO("\tUnlink file '%s'",file->name); @@ -44,7 +44,7 @@ int host(int argc, char *argv[]) // Re Open the file wich is in fact created XBT_INFO("\tOpen file '%s'",FILENAME1); - file = MSG_file_open(mount,FILENAME1,"rw"); + file = MSG_file_open(mount,FILENAME1); // Write into the new file write = MSG_file_write(ptr,100000,sizeof(char*),file); // Write for 100Ko