summaryrefslogtreecommitdiff
path: root/Kernel
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-03-30 04:20:08 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-03-30 04:20:08 +0100
commit73f3e05ebb46d54f3aa1316742151170f5aef6f5 (patch)
tree6b9c9fae8c2063ede4a05ce40285672fde6c8dc5 /Kernel
parent4506e3a085d19e13ce60a44876ee1e837bb0b995 (diff)
downloadserenity-73f3e05ebb46d54f3aa1316742151170f5aef6f5.zip
Stopwatch: Print the result in decimal instead of hexadecimal.
Diffstat (limited to 'Kernel')
-rw-r--r--Kernel/i386.h2
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: