diff options
Diffstat (limited to 'src/utils/process.cpp')
-rw-r--r-- | src/utils/process.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/process.cpp b/src/utils/process.cpp index a5629fbc9..8e238b4cc 100644 --- a/src/utils/process.cpp +++ b/src/utils/process.cpp @@ -158,7 +158,7 @@ int execFileWait(std::string pathName, std::string name, execl(pathName.c_str(), name.c_str(), arg1.c_str(), arg2.c_str(), static_cast<char *>(nullptr)); } - exit(-1); + _exit(-1); } // monitoring process |