Browse Source

Fix windows build

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.3.1
falkTX 3 years ago
parent
commit
1f4c6212ae
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      source/modules/water/threads/ChildProcess.cpp

+ 2
- 2
source/modules/water/threads/ChildProcess.cpp View File

@@ -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)


Loading…
Cancel
Save