sw/qa/extras/rtftok/rtftok.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 49a4b4c32bda86b97ef48d1d2ce9bf8f02d3e2e3
Author: Tor Lillqvist <tlillqv...@suse.com>
Date:   Tue Feb 14 10:55:50 2012 +0200

    Fix int/sal_Int32 ambiguity

diff --git a/sw/qa/extras/rtftok/rtftok.cxx b/sw/qa/extras/rtftok/rtftok.cxx
index df2966f..9afb4f2 100644
--- a/sw/qa/extras/rtftok/rtftok.cxx
+++ b/sw/qa/extras/rtftok/rtftok.cxx
@@ -156,7 +156,7 @@ void RtfModelTest::testFdo45543()
             aBuf.append(xRange->getString());
         }
     }
-    CPPUNIT_ASSERT_EQUAL(5, aBuf.getLength());
+    CPPUNIT_ASSERT_EQUAL((sal_Int32)5, aBuf.getLength());
 }
 
 CPPUNIT_TEST_SUITE_REGISTRATION(RtfModelTest);
_______________________________________________
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to