summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@suse.com>2012-07-16 11:19:34 +0100
committerMichael Meeks <michael.meeks@suse.com>2012-07-16 11:19:34 +0100
commit0dde6d4a2d14dcb09187d476c4fbb80b6e008315 (patch)
treee4191e4b8492a6f257212b8836c00a0d7817b7ff
parent098be920e012a3ae133d23cffdb161a0816d29c4 (diff)
fix 32bit build wrt. int vs. sal_Int32 comparison
Change-Id: I7ae0014c2b8e14dabab0d64cb498abb820b3968d
-rw-r--r--sal/qa/rtl/strings/test_oustring_compare.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/qa/rtl/strings/test_oustring_compare.cxx b/sal/qa/rtl/strings/test_oustring_compare.cxx
index e8e4c91122f7..1ad686768d52 100644
--- a/sal/qa/rtl/strings/test_oustring_compare.cxx
+++ b/sal/qa/rtl/strings/test_oustring_compare.cxx
@@ -76,7 +76,7 @@ void test::oustring::Compare::compareToAscii()
rtl::OUString abc("abc");
CPPUNIT_ASSERT(abc.compareToAscii("a") > 0);
CPPUNIT_ASSERT_EQUAL(
- 0, abc.compareToAscii(RTL_CONSTASCII_STRINGPARAM("a")));
+ sal_Int32(0), abc.compareToAscii(RTL_CONSTASCII_STRINGPARAM("a")));
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */