From: suter Date: Mon, 10 Sep 2012 09:02:16 +0000 (+0200) Subject: slight change in the example that lauchs everything X-Git-Tag: v3_8~146^2~75 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/314b2e25658d9095af2370d20246143eb905a49c slight change in the example that lauchs everything --- diff --git a/examples/smpi/replay.c b/examples/smpi/replay.c index e82d6bfdff..3aad3c2b52 100644 --- a/examples/smpi/replay.c +++ b/examples/smpi/replay.c @@ -11,8 +11,8 @@ int main(int argc, char *argv[]) smpi_replay_init(&argc, &argv); /* Actually do the simulation using smpi_action_trace_run */ - smpi_action_trace_run(argv[1]); // it's ok to pass a NULL argument here - + smpi_action_trace_run(NULL); smpi_replay_finalize(); + return 0; }