mirror of
https://github.com/xmrig/xmrig.git
synced 2024-11-17 00:07:44 +00:00
valgrind showed some conditional jumps when printing the hashrate
This commit is contained in:
parent
a9178bd468
commit
f9dbd7bc78
1 changed files with 4 additions and 4 deletions
|
@ -151,10 +151,10 @@ void Hashrate::add(size_t threadId, uint64_t count, uint64_t timestamp)
|
|||
|
||||
void Hashrate::print()
|
||||
{
|
||||
char num1[8];
|
||||
char num2[8];
|
||||
char num3[8];
|
||||
char num4[8];
|
||||
char num1[8] = { 0 };
|
||||
char num2[8] = { 0 };
|
||||
char num3[8] = { 0 };
|
||||
char num4[8] = { 0 };
|
||||
|
||||
LOG_INFO(m_controller->config()->isColors() ? "\x1B[01;37mspeed\x1B[0m 2.5s/60s/15m \x1B[01;36m%s \x1B[22;36m%s %s \x1B[01;36mH/s\x1B[0m max: \x1B[01;36m%s H/s" : "speed 2.5s/60s/15m %s %s %s H/s max: %s H/s",
|
||||
format(calc(ShortInterval), num1, sizeof(num1)),
|
||||
|
|
Loading…
Reference in a new issue