summaryrefslogtreecommitdiff
path: root/LibC
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 /LibC
parent4506e3a085d19e13ce60a44876ee1e837bb0b995 (diff)
downloadserenity-73f3e05ebb46d54f3aa1316742151170f5aef6f5.zip
Stopwatch: Print the result in decimal instead of hexadecimal.
Diffstat (limited to 'LibC')
-rw-r--r--LibC/serenity.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibC/serenity.h b/LibC/serenity.h
index ce9efff53c..d753063d7a 100644
--- a/LibC/serenity.h
+++ b/LibC/serenity.h
@@ -26,7 +26,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: