aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/ColorPrivTest.cpp
diff options
context:
space:
mode:
authorGravatar mtklein@google.com <mtklein@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-12-03 19:27:41 +0000
committerGravatar mtklein@google.com <mtklein@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-12-03 19:27:41 +0000
commitcb08f986938eeeeb57f950c94fee120aca965787 (patch)
tree5932fa9aafbb0f183e018475859702afc01768ba /tests/ColorPrivTest.cpp
parent55ca8244cc19c3067defa64f139521264d777eb0 (diff)
Fix 32/64 bit warnings on g++-4.2.
BUG= Review URL: https://codereview.chromium.org/98343006 git-svn-id: http://skia.googlecode.com/svn/trunk@12470 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tests/ColorPrivTest.cpp')
-rw-r--r--tests/ColorPrivTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ColorPrivTest.cpp b/tests/ColorPrivTest.cpp
index ddcde5dc01..19a63c7843 100644
--- a/tests/ColorPrivTest.cpp
+++ b/tests/ColorPrivTest.cpp
@@ -15,7 +15,7 @@ DEF_TEST(Splay, r) {
ASSERT(SkUnsplay(ag << 8, rb << 8) == color);
const uint64_t agrb = SkSplay(color);
- ASSERT(agrb == 0x00A100C300B200D4);
+ ASSERT(agrb == 0x00A100C300B200D4ULL);
ASSERT(SkUnsplay(agrb<<8) == color);
}