X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a0300e4fe9a9b7ab9c651651bd0456a5aab71021..5cfd78ee13dfd9c06ca703c402d2d8e62cbfec3f:/teshsuite/msg/io-file-remote/io-file-remote.c diff --git a/teshsuite/msg/io-file-remote/io-file-remote.c b/teshsuite/msg/io-file-remote/io-file-remote.c index 3d6cf510ae..da6e4c92b9 100644 --- a/teshsuite/msg/io-file-remote/io-file-remote.c +++ b/teshsuite/msg/io-file-remote/io-file-remote.c @@ -36,7 +36,7 @@ static int host(int argc, char* argv[]) sg_size_t write = MSG_file_write(file, MSG_file_get_size(file) * 1024); XBT_INFO("Have written %llu bytes to '%s'.", write, filename); - msg_host_t src = MSG_host_self(); + const_sg_host_t src = MSG_host_self(); msg_host_t dest = MSG_host_by_name(argv[3]); if (xbt_str_parse_int(argv[5], "Argument 5 (move or copy) must be an int, not '%s'")) { XBT_INFO("Move '%s' (of size %llu) from '%s' to '%s'", filename, MSG_file_get_size(file), MSG_host_get_name(src), @@ -56,7 +56,7 @@ static int host(int argc, char* argv[]) int main(int argc, char** argv) { unsigned int cur; - msg_storage_t st; + const_sg_storage_t st; MSG_init(&argc, argv); MSG_storage_file_system_init();