1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:27:35 +00:00

Stopwatch: Print the result in decimal instead of hexadecimal.

This commit is contained in:
Andreas Kling 2019-03-30 04:20:08 +01:00
parent 4506e3a085
commit 73f3e05ebb
2 changed files with 2 additions and 2 deletions

View file

@ -282,7 +282,7 @@ public:
SplitQword end;
read_tsc(end.lsw, end.msw);
uint64_t diff = end.qw - m_start.qw;
dbgprintf("Stopwatch(%s): %q ticks\n", m_name, diff);
dbgprintf("Stopwatch(%s): %Q ticks\n", m_name, diff);
}
private: