Index: src/core/SkPathMeasure.cpp |
diff --git a/src/core/SkPathMeasure.cpp b/src/core/SkPathMeasure.cpp |
index c97c826846fb6e368ec10612f53c5e83f0290347..af2579fff186e022a2cd15623a140a9aa550b31c 100644 |
--- a/src/core/SkPathMeasure.cpp |
+++ b/src/core/SkPathMeasure.cpp |
@@ -389,8 +389,7 @@ const SkPathMeasure::Segment* SkPathMeasure::distanceToSegment( |
const Segment* seg = fSegments.begin(); |
int count = fSegments.count(); |
- int index = SkTSearch<SkScalar>(&seg->fDistance, count, distance, |
- sizeof(Segment)); |
+ int index = SkTSearch<SkScalar>(&seg->fDistance, count, distance, sizeof(Segment)); |
// don't care if we hit an exact match or not, so we xor index if it is negative |
index ^= (index >> 31); |
seg = &seg[index]; |