Index: src/core/SkStroke.cpp |
diff --git a/src/core/SkStroke.cpp b/src/core/SkStroke.cpp |
index 9c26294129fced80b19ef535ad4f27ac9d196cc6..0f1a15f0b6deb6ad48eced5dba6fe7a6e65b4e1d 100644 |
--- a/src/core/SkStroke.cpp |
+++ b/src/core/SkStroke.cpp |
@@ -397,7 +397,7 @@ static bool has_valid_tangent(const SkPath::Iter* iter) { |
continue; |
} |
return true; |
- case SkPath::kClose_Verb: |
+ case SkPath::kClose_Verb: |
case SkPath::kDone_Verb: |
return false; |
} |
@@ -627,7 +627,7 @@ SkPathStroker::ReductionType SkPathStroker::CheckConicLinear(const SkConic& coni |
SkScalar xT = 0, yT = 0; |
(void) conic.findXExtrema(&xT); |
(void) conic.findYExtrema(&yT); |
- SkScalar t = SkTMax(xT, yT); |
+ SkScalar t = SkTMax(xT, yT); |
if (0 == t) { |
return kLine_ReductionType; |
} |