X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8be7ea3f9e71cd563e91b6aba63f5c70f043fbd5..d2f43eb97c019f161c5e93cba89ee9adf3ab389f:/examples/msg/io/file_unlink.c diff --git a/examples/msg/io/file_unlink.c b/examples/msg/io/file_unlink.c index ec6ea5b75c..ec901daaef 100644 --- a/examples/msg/io/file_unlink.c +++ b/examples/msg/io/file_unlink.c @@ -21,6 +21,7 @@ #include #include "msg/msg.h" #include "surf/surf_private.h" +#include "inttypes.h" int host(int argc, char *argv[]); @@ -31,7 +32,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,8 +47,8 @@ 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 - XBT_INFO("\tHave written %zu on %s",write,file->fullname); + write = MSG_file_write(file,100000); // Write for 100Ko + XBT_INFO("\tHave written %" PRIu64 " on %s",write,file->fullname); // Close the file XBT_INFO("\tClose file '%s'",file->fullname);