Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix an error message
authorMartin Quinson <martin.quinson@ens-rennes.fr>
Mon, 3 Oct 2022 17:14:56 +0000 (19:14 +0200)
committerMartin Quinson <martin.quinson@ens-rennes.fr>
Mon, 3 Oct 2022 18:40:04 +0000 (20:40 +0200)
src/mc/api/RemoteApp.cpp

index 0371d51..27518c4 100644 (file)
@@ -92,7 +92,8 @@ static void run_child_process(int socket, const std::vector<char*>& args)
                "        Make sure that your binary exists on disk and is executable.",
                args[i], strerror(errno));
   if (strchr(args[i], '=') != nullptr)
-    XBT_CRITICAL("If you want to pass command-line parameters, please use --cfg=model-check/setenv:%s", args[i]);
+    XBT_CRITICAL("If you want to pass environment variables to the application, please use --cfg=model-check/setenv:%s",
+                 args[i]);
 
   xbt_die("Aborting now.");
 }