diff --git a/source/modules/water/threads/ChildProcess.cpp b/source/modules/water/threads/ChildProcess.cpp index 09e57d996..2ea541cde 100644 --- a/source/modules/water/threads/ChildProcess.cpp +++ b/source/modules/water/threads/ChildProcess.cpp @@ -334,7 +334,7 @@ bool ChildProcess::start (const String& command, Type) return activeProcess != nullptr; } -bool ChildProcess::start (const StringArray& args) +bool ChildProcess::start (const StringArray& args, const Type type) { String escaped; @@ -353,7 +353,7 @@ bool ChildProcess::start (const StringArray& args) escaped << ' '; } - return start (escaped.trim()); + return start (escaped.trim(), type); } #else bool ChildProcess::start (const String& command, const Type type)