Kaydet (Commit) 5bc40654 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

WaE: this decimal constant is unsigned only in ISO C90

Change-Id: Ica3bf96289d142be2ef19d3a0bb3a4006ef5317d
üst 34ca8dd9
......@@ -782,7 +782,7 @@ void Test::testN777345()
Graphic aGraphic(xGraphic);
// If this changes later, feel free to update it, but make sure it's not
// the checksum of a white/transparent placeholder rectangle.
CPPUNIT_ASSERT_EQUAL(sal_uLong(2404338915), aGraphic.GetChecksum());
CPPUNIT_ASSERT_EQUAL(sal_uLong(2404338915U), aGraphic.GetChecksum());
}
CPPUNIT_TEST_SUITE_REGISTRATION(Test);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment