summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/skia/src/core/SkString.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/skia/src/core/SkString.cpp')
-rw-r--r--chromium/third_party/skia/src/core/SkString.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/third_party/skia/src/core/SkString.cpp b/chromium/third_party/skia/src/core/SkString.cpp
index 643dfb13727..ba1da413689 100644
--- a/chromium/third_party/skia/src/core/SkString.cpp
+++ b/chromium/third_party/skia/src/core/SkString.cpp
@@ -162,7 +162,7 @@ char* SkStrAppendFixed(char string[], SkFixed x) {
static const uint16_t gTens[] = { 1000, 100, 10, 1 };
const uint16_t* tens = gTens;
- x = SkFixedRound(frac * 10000);
+ x = SkFixedRoundToInt(frac * 10000);
SkASSERT(x <= 10000);
if (x == 10000) {
x -= 1;