[Libreoffice-commits] .: sw/qa
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Wed Aug 29 03:42:06 PDT 2012
sw/qa/extras/ooxmlimport/ooxmlimport.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 5bc406541c3845985d2239056c35fcfb4e84b093
Author: Tor Lillqvist <tlillqvist at suse.com>
Date: Wed Aug 29 13:40:53 2012 +0300
WaE: this decimal constant is unsigned only in ISO C90
Change-Id: Ica3bf96289d142be2ef19d3a0bb3a4006ef5317d
diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
index f5c3661..00e36b8 100644
--- a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
+++ b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
@@ -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);
More information about the Libreoffice-commits
mailing list