summaryrefslogtreecommitdiffstats
path: root/executor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'executor.cpp')
-rw-r--r--executor.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/executor.cpp b/executor.cpp
index b3333ae..6028ffe 100644
--- a/executor.cpp
+++ b/executor.cpp
@@ -479,7 +479,7 @@ void executor::hashrate_report()
output.append(hps_format(fHighestHps, num, sizeof(num)));
output.append(" H/s\n");
- fputs(output.c_str(), stdout);
+ printer::inst()->print_str(output.c_str());
}
char* time_format(char* buf, size_t len, std::chrono::system_clock::time_point time)
@@ -562,7 +562,7 @@ void executor::result_report()
else
out.append("Yay! No errors.\n");
- fputs(out.c_str(), stdout);
+ printer::inst()->print_str(output.c_str());
}
void executor::connection_report()
@@ -601,5 +601,5 @@ void executor::connection_report()
else
out.append("Yay! No errors.\n");
- fputs(out.c_str(), stdout);
+ printer::inst()->print_str(output.c_str());
}
OpenPOWER on IntegriCloud