Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines with new year.
[simgrid.git] / teshsuite / msg / io-file-remote / io-file-remote.c
index 3d6cf51..3456513 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2014-2019. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2014-2020. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -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();