summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_x86-64/except.cxx2
1 files changed, 1 insertions, 1 deletions
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;