aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/timer
diff options
context:
space:
mode:
authorGravatar Jim Van Verth <jvanverth@google.com>2017-09-20 15:23:44 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-09-20 19:42:09 +0000
commit446cc84b55279f8085ff9e3c4fbea2b14db72078 (patch)
treee8119300bd451b839720c8f811e1e120a06bb744 /tools/timer
parent94c75c79692ffd83c0b548123b4de6659ff1afa0 (diff)
Fix MSAN compile error
Change-Id: I2ac07f2da5e08a3dbefc59fb860d69817906df41 Reviewed-on: https://skia-review.googlesource.com/49441 Reviewed-by: Jim Van Verth <jvanverth@google.com> Commit-Queue: Jim Van Verth <jvanverth@google.com>
Diffstat (limited to 'tools/timer')
-rw-r--r--tools/timer/Timer.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/timer/Timer.cpp b/tools/timer/Timer.cpp
index 01ffb96674..6f04c98150 100644
--- a/tools/timer/Timer.cpp
+++ b/tools/timer/Timer.cpp
@@ -5,6 +5,7 @@
* found in the LICENSE file.
*/
#include "Timer.h"
+#include <stdio.h>
SkString HumanizeMs(double ms) {
if (ms > 60e+3) return SkStringPrintf("%.3gm", ms/60e+3);