From fb9a7e941f97152abb68a68610bdde3f2d69e758 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Wed, 13 Feb 2013 07:09:27 +0000 Subject: [PATCH] --- Common/OS.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Common/OS.cpp b/Common/OS.cpp index 02b85acf76..961da73fcc 100644 --- a/Common/OS.cpp +++ b/Common/OS.cpp @@ -229,7 +229,8 @@ int SystemCall(const std::string &command, bool blocking) std::string cmd(command); if(!blocking) cmd += " &"; Msg::Info("Calling '%s'", cmd.c_str()); - return system(cmd.c_str()); + system(cmd.c_str()); + return 0; #endif } -- GitLab