X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7f4f03348bd07609e258eb3b545bdafc2c881847..c0d83ee051e1069634759e6287bbb6ae1662b7a4:/src/msg/msg_actions.cpp diff --git a/src/msg/msg_actions.cpp b/src/msg/msg_actions.cpp index 2e06c746e3..a1a43da04c 100644 --- a/src/msg/msg_actions.cpp +++ b/src/msg/msg_actions.cpp @@ -43,9 +43,9 @@ msg_error_t MSG_action_trace_run(char *path) xbt_action_fp=NULL; if (path) { - xbt_action_fp = fopen(path, "r"); - if (xbt_action_fp == NULL) - xbt_die("Cannot open %s: %s", path, strerror(errno)); + xbt_action_fp = fopen(path, "r"); + xbt_assert(xbt_action_fp != NULL, "Cannot open %s: %s", + path, strerror(errno)); } res = MSG_main();