Index: src/pathops/SkQuarticRoot.cpp |
diff --git a/src/pathops/SkQuarticRoot.cpp b/src/pathops/SkQuarticRoot.cpp |
index d3a6a781c7938329f1605df5c5b83d3e065ea489..dca96ded3acfadbabd7bdc7915d37d15520b0590 100644 |
--- a/src/pathops/SkQuarticRoot.cpp |
+++ b/src/pathops/SkQuarticRoot.cpp |
@@ -152,7 +152,7 @@ int SkQuarticRootsReal(int firstCubicRoot, const double A, const double B, const |
// eliminate duplicates |
for (int i = 0; i < num - 1; ++i) { |
for (int j = i + 1; j < num; ) { |
- if (AlmostEqualUlps(s[i], s[j])) { |
+ if (AlmostDequalUlps(s[i], s[j])) { |
if (j < --num) { |
s[j] = s[num]; |
} |