]> AND Public Git Repository - simgrid.git/blobdiff - src/msg/msg_process.c
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[MSVC] convert unsigned to signed before applying unary minus
[simgrid.git] / src / msg / msg_process.c
index 0589483f71ff14c31a988dd5ed1b786ab7a937bb..339854884cace4ddc475b72aa9ad84ff97f012b3 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2004-2014. The SimGrid Team.
+/* Copyright (c) 2004-2015. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -223,7 +223,7 @@ msg_error_t MSG_process_migrate(msg_process_t process, msg_host_t host)
   simdata->m_host = host;
   msg_host_t now = simdata->m_host;
   TRACE_msg_process_change_host(process, now, host);
-  simcall_process_change_host(process, host);
+  simcall_process_set_host(process, host);
   return MSG_OK;
 }