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 <[email protected]> AuthorDate: Wed Dec 5 23:32:49 2018 +0100 Commit: Stephan Bergmann <[email protected]> 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; _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
