svl/qa/unit/test_URIHelper.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 48cb5c72219b6c1c44974459876af988c0991f18
Author: Stephan Bergmann <sberg...@redhat.com>
Date:   Fri Jun 29 16:58:13 2018 +0200

    Improved loplugin:redundantcast (const-qualified typedefs): svl
    
    Change-Id: Ife1db81f772ecf3bb713952be276ff8a2fd318a9
    Reviewed-on: https://gerrit.libreoffice.org/56716
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <sberg...@redhat.com>

diff --git a/svl/qa/unit/test_URIHelper.cxx b/svl/qa/unit/test_URIHelper.cxx
index 7519ae8f5e0e..233b812a54c7 100644
--- a/svl/qa/unit/test_URIHelper.cxx
+++ b/svl/qa/unit/test_URIHelper.cxx
@@ -397,9 +397,9 @@ void Test::testFindFirstURLInText() {
             buf.append("\" -> ");
             buf.append(tests[i].result == nullptr ? "none" : tests[i].result);
             buf.append(" (");
-            buf.append(static_cast< sal_Int32 >(tests[i].begin));
+            buf.append(tests[i].begin);
             buf.append(", ");
-            buf.append(static_cast< sal_Int32 >(tests[i].end));
+            buf.append(tests[i].end);
             buf.append(')');
             buf.append(" != ");
             buf.append(OUStringToOString(result, RTL_TEXTENCODING_UTF8));
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to