diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-30 04:20:08 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-30 04:20:08 +0100 |
commit | 73f3e05ebb46d54f3aa1316742151170f5aef6f5 (patch) | |
tree | 6b9c9fae8c2063ede4a05ce40285672fde6c8dc5 /Kernel | |
parent | 4506e3a085d19e13ce60a44876ee1e837bb0b995 (diff) | |
download | serenity-73f3e05ebb46d54f3aa1316742151170f5aef6f5.zip |
Stopwatch: Print the result in decimal instead of hexadecimal.
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/i386.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/i386.h b/Kernel/i386.h index 9d0ec625ad..3b827fd660 100644 --- a/Kernel/i386.h +++ b/Kernel/i386.h @@ -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: |