summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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: */