X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c2505da34e3d93fa429d9f047e56257378901ee4..9f21f35eadfc5d1f43d3e7a4b591711fd7fb9616:/examples/msg/actions-comm/actions-comm.c diff --git a/examples/msg/actions-comm/actions-comm.c b/examples/msg/actions-comm/actions-comm.c index b5dcc48b24..e9888db542 100644 --- a/examples/msg/actions-comm/actions-comm.c +++ b/examples/msg/actions-comm/actions-comm.c @@ -280,8 +280,6 @@ static void action_finalize(const char *const *action) int main(int argc, char *argv[]) { - msg_error_t res = MSG_OK; - /* Check the given arguments */ MSG_init(&argc, argv); /* Explicit initialization of the action module is required now*/ @@ -312,7 +310,7 @@ int main(int argc, char *argv[]) xbt_replay_action_register("compute", action_compute); /* Actually do the simulation using MSG_action_trace_run */ - res = MSG_action_trace_run(argv[3]); // it's ok to pass a NULL argument here + msg_error_t res = MSG_action_trace_run(argv[3]); // it's ok to pass a NULL argument here XBT_INFO("Simulation time %g", MSG_get_clock());