aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar caryclark@google.com <caryclark@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-10-02 15:07:52 +0000
committerGravatar caryclark@google.com <caryclark@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-10-02 15:07:52 +0000
commitf614b76377cd4a273065ab01efabf9ded344eac2 (patch)
tree7e55210c5f2ea3c2e15815373ffe99ccff0441d0 /tests
parentea1abfcab66f38029d870611e2505e4f9640c98a (diff)
fix 10.6
git-svn-id: http://skia.googlecode.com/svn/trunk@11572 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tests')
-rw-r--r--tests/PathOpsOpTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PathOpsOpTest.cpp b/tests/PathOpsOpTest.cpp
index 4d035770b7..3ec2199573 100644
--- a/tests/PathOpsOpTest.cpp
+++ b/tests/PathOpsOpTest.cpp
@@ -2122,7 +2122,7 @@ static void issue1435(skiatest::Reporter* reporter) {
static void bufferOverflow(skiatest::Reporter* reporter) {
SkPath path;
- path.addRect(0,0, 300,170141183460469231731687303715884105728.);
+ path.addRect(0,0, 300,170141183460469231731687303715884105728.f);
SkPath pathB;
pathB.addRect(0,0, 300,16);
testPathOp(reporter, path, pathB, kUnion_PathOp);