mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
perf_timer: format string fix for 32 bits
This commit is contained in:
parent
0b93dd39db
commit
12d861694d
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ public:
|
||||||
performance_timers->pop_back();
|
performance_timers->pop_back();
|
||||||
ticks = epee::misc_utils::get_tick_count() - ticks;
|
ticks = epee::misc_utils::get_tick_count() - ticks;
|
||||||
char s[12];
|
char s[12];
|
||||||
snprintf(s, sizeof(s), "%8lu ", ticks);
|
snprintf(s, sizeof(s), "%8llu ", (unsigned long long)ticks);
|
||||||
LOG_PRINT("PERF " << s << std::string(performance_timers->size() * 2, ' ') << " " << name, level);
|
LOG_PRINT("PERF " << s << std::string(performance_timers->size() * 2, ' ') << " " << name, level);
|
||||||
if (performance_timers->empty())
|
if (performance_timers->empty())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue