Index: src/utils/SkLua.cpp |
diff --git a/src/utils/SkLua.cpp b/src/utils/SkLua.cpp |
index 117cb8af838aea6349ad13151ad7e97cd049292e..d9beaed2eb8b7ec667f950c66c044b8e8d26fb5d 100644 |
--- a/src/utils/SkLua.cpp |
+++ b/src/utils/SkLua.cpp |
@@ -405,7 +405,7 @@ void SkLua::pushClipStackElement(const SkClipStack::Element& element, const char |
this->pushPath(element.getPath(), "path"); |
break; |
} |
- this->pushString(region_op(element.getOp()), "op"); |
+ this->pushString(region_op((SkRegion::Op)element.getOp()), "op"); |
this->pushBool(element.isAA(), "aa"); |
CHECK_SETFIELD(key); |
} |