Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use xbt_die instead of xbt_assert(false).
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Wed, 7 Jun 2023 08:44:40 +0000 (10:44 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Wed, 7 Jun 2023 09:24:46 +0000 (11:24 +0200)
tools/graphicator/graphicator.cpp

index dbcb6e0..368892b 100644 (file)
@@ -26,7 +26,7 @@ int main(int argc, char** argv)
     simgrid::instr::platform_graph_export_graphviz(outputfile);
   }
   else {
-    xbt_assert(false, "Unknown output file format, please use '.dot' or .csv' extension\n");
+    xbt_die("Unknown output file format, please use '.dot' or .csv' extension");
   }
   return 0;
 }