diff options
Diffstat (limited to 'toolsrc/src/vcpkg_System.cpp')
| -rw-r--r-- | toolsrc/src/vcpkg_System.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/toolsrc/src/vcpkg_System.cpp b/toolsrc/src/vcpkg_System.cpp index 7c06759af..abbed587c 100644 --- a/toolsrc/src/vcpkg_System.cpp +++ b/toolsrc/src/vcpkg_System.cpp @@ -129,7 +129,7 @@ namespace vcpkg::System auto pipe = _wpopen(actual_cmd_line.c_str(), L"r"); if (pipe == nullptr) { - return { 1, output }; + return {1, output}; } while (fgets(buf, 1024, pipe)) { @@ -137,10 +137,10 @@ namespace vcpkg::System } if (!feof(pipe)) { - return { 1, output }; + return {1, output}; } auto ec = _pclose(pipe); - return { ec, output }; + return {ec, output}; } std::wstring create_powershell_script_cmd(const fs::path& script_path, const CWStringView args) |
