Skip to content
Snippets Groups Projects
Unverified Commit 47a4d031 authored by fireice-uk's avatar fireice-uk Committed by GitHub
Browse files

Merge pull request #205 from scottmckenzie/dev

Right align hashrate report to six characters
parents 53e4b753 9a51c6bf
No related branches found
No related tags found
No related merge requests found
...@@ -631,14 +631,11 @@ inline const char* hps_format(double h, char* buf, size_t l) ...@@ -631,14 +631,11 @@ inline const char* hps_format(double h, char* buf, size_t l)
{ {
if(std::isnormal(h) || h == 0.0) if(std::isnormal(h) || h == 0.0)
{ {
if(h < 10.0) snprintf(buf, l, " %6.1f", h);
snprintf(buf, l, " %03.1f", h);
else
snprintf(buf, l, " %04.1f", h);
return buf; return buf;
} }
else else
return " (na)"; return " (na)";
} }
bool executor::motd_filter_console(std::string& motd) bool executor::motd_filter_console(std::string& motd)
...@@ -732,9 +729,9 @@ void executor::hashrate_report(std::string& out) ...@@ -732,9 +729,9 @@ void executor::hashrate_report(std::string& out)
std::transform(name.begin(), name.end(), name.begin(), ::toupper); std::transform(name.begin(), name.end(), name.begin(), ::toupper);
out.append("HASHRATE REPORT - ").append(name).append("\n"); out.append("HASHRATE REPORT - ").append(name).append("\n");
out.append("| ID | 10s | 60s | 15m |"); out.append("| ID | 10s | 60s | 15m |");
if(nthd != 1) if(nthd != 1)
out.append(" ID | 10s | 60s | 15m |\n"); out.append(" ID | 10s | 60s | 15m |\n");
else else
out.append(1, '\n'); out.append(1, '\n');
......
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