diff --git a/src/subprocess_unix.cpp b/src/subprocess_unix.cpp index 7fcd7b15b..bc4791736 100644 --- a/src/subprocess_unix.cpp +++ b/src/subprocess_unix.cpp @@ -67,7 +67,7 @@ void UnixImpl::run(commandLine_t& commandLine) commandLine.push_back(NULL); if (execvp(binary, const_cast(commandLine.data()))) { perror("Cannot launch\n"); - exit(-1); + _exit(-1); } break;