Skip to content
Snippets Groups Projects
Commit 7eaa964e authored by Matthias Männich's avatar Matthias Männich
Browse files

cmProcessTools: fix minor issue introduced by 595feb32

parent 85a7eaba
No related branches found
Tags v3.10.0-rc1
No related merge requests found
......@@ -38,7 +38,7 @@ void cmProcessTools::RunProcess(struct cmsysProcess_s* cp, OutputParser* out,
if (err) {
processOutput.DecodeText(std::string(), strdata, 2);
if (!strdata.empty()) {
out->Process(strdata.c_str(), int(strdata.size()));
err->Process(strdata.c_str(), int(strdata.size()));
}
}
cmsysProcess_WaitForExit(cp, nullptr);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment