aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/MathTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/MathTest.cpp')
-rw-r--r--tests/MathTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/MathTest.cpp b/tests/MathTest.cpp
index 4ad83d1829..ca860e462b 100644
--- a/tests/MathTest.cpp
+++ b/tests/MathTest.cpp
@@ -17,7 +17,7 @@ static void test_clz(skiatest::Reporter* reporter) {
REPORTER_ASSERT(reporter, 32 == SkCLZ(0));
REPORTER_ASSERT(reporter, 31 == SkCLZ(1));
REPORTER_ASSERT(reporter, 1 == SkCLZ(1 << 30));
- REPORTER_ASSERT(reporter, 0 == SkCLZ(~0UL));
+ REPORTER_ASSERT(reporter, 0 == SkCLZ(~0U));
SkRandom rand;
for (int i = 0; i < 1000; ++i) {