X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/366b63fceb713f0b87e9783640066d822e7e3e65..38f7ddbf61f574a934f191ef2d8358d9f8be1f96:/examples/msg/io-remote/io-remote.c diff --git a/examples/msg/io-remote/io-remote.c b/examples/msg/io-remote/io-remote.c index 4be05a2f8d..948950bc45 100644 --- a/examples/msg/io-remote/io-remote.c +++ b/examples/msg/io-remote/io-remote.c @@ -32,9 +32,8 @@ 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, dest; - src= MSG_host_self(); - dest = MSG_host_by_name(argv[3]); + msg_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), argv[3]); @@ -70,7 +69,7 @@ int main(int argc, char **argv) xbt_dynar_foreach(storages, cur, st){ XBT_INFO("Init: %llu MiB used on '%s'", MSG_storage_get_used_size(st)/INMEGA, MSG_storage_get_name(st)); } - xbt_dynar_free_container(&storages); + xbt_dynar_free(&storages); XBT_INFO("Simulation time %g", MSG_get_clock()); return res != MSG_OK;