Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Misc const qualifiers following yesterday's changes.
[simgrid.git] / teshsuite / msg / io-file-remote / io-file-remote.c
index 3d6cf51..da6e4c9 100644 (file)
@@ -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();