Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
a couple more asserts
[simgrid.git] / src / msg / msg_actions.cpp
index 2e06c74..a1a43da 100644 (file)
@@ -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();