aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/utils
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/SkLua.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/SkLua.cpp b/src/utils/SkLua.cpp
index bb24cac3b1..de035158d7 100644
--- a/src/utils/SkLua.cpp
+++ b/src/utils/SkLua.cpp
@@ -645,7 +645,7 @@ static int lpaint_getStrokeJoin(lua_State* L) {
}
static int lpaint_getTextEncoding(lua_State* L) {
- SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->getTextEncoding());
+ SkLua(L).pushScalar(static_cast<SkScalar>(get_obj<SkPaint>(L, 1)->getTextEncoding()));
return 1;
}