[Libreoffice-commits] core.git: bridges/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Wed Dec 5 22:33:26 UTC 2018


 bridges/source/cpp_uno/gcc3_macosx_x86-64/except.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b7f1b4c02c61dbe846ca190b246061b11c59e1df
Author:     Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Wed Dec 5 23:32:49 2018 +0100
Commit:     Stephan Bergmann <sbergman at redhat.com>
CommitDate: Wed Dec 5 23:32:49 2018 +0100

    loplugin:unnecessaryparen
    
    Change-Id: Ic717f68f0d107138dd18116b70f3a49588c5778f

diff --git a/bridges/source/cpp_uno/gcc3_macosx_x86-64/except.cxx b/bridges/source/cpp_uno/gcc3_macosx_x86-64/except.cxx
index 2df4356c81b5..c31cf180a704 100644
--- a/bridges/source/cpp_uno/gcc3_macosx_x86-64/except.cxx
+++ b/bridges/source/cpp_uno/gcc3_macosx_x86-64/except.cxx
@@ -119,7 +119,7 @@ static OUString toUNOname( char const * p )
     while ('E' != *p)
     {
         // read chars count
-        long n = (*p++ - '0');
+        long n = *p++ - '0';
         while ('0' <= *p && '9' >= *p)
         {
             n *= 10;


More information about the Libreoffice-commits mailing list