Skip to content

Commit cf03e17

Browse files
committed
fix build
1 parent 5bd7ac5 commit cf03e17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gui/checkthread.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ static bool executeCommand(std::string exe, std::vector<std::string> args, std::
7777

7878
if (redirect.compare(0,3,"2> ") == 0) {
7979
std::ofstream fout(redirect.substr(3));
80-
fout->exceptions(std::ios_base::failbit | std::ios_base::badbit);
80+
fout.exceptions(std::ios_base::failbit | std::ios_base::badbit);
8181
fout << process.readAllStandardError().toStdString();
8282
}
8383
return process.exitCode() == 0;

0 commit comments

Comments
 (0)