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 /LibC | |
parent | 4506e3a085d19e13ce60a44876ee1e837bb0b995 (diff) | |
download | serenity-73f3e05ebb46d54f3aa1316742151170f5aef6f5.zip |
Stopwatch: Print the result in decimal instead of hexadecimal.
Diffstat (limited to 'LibC')
-rw-r--r-- | LibC/serenity.h | 2 |
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: |