mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #1239
12d8616
perf_timer: format string fix for 32 bits (moneromooo-monero)
This commit is contained in:
commit
31ceb830e5
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ public:
|
|||
performance_timers->pop_back();
|
||||
ticks = epee::misc_utils::get_tick_count() - ticks;
|
||||
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);
|
||||
if (performance_timers->empty())
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue