diff options
-rw-r--r-- | tools/source/generic/bigint.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/generic/bigint.cxx b/tools/source/generic/bigint.cxx index a6acdc8bb98c..fcb7da378fe5 100644 --- a/tools/source/generic/bigint.cxx +++ b/tools/source/generic/bigint.cxx @@ -594,7 +594,7 @@ BigInt::BigInt( long long nValue ) else { bIsBig = true; - const unsigned long long nUValue = static_cast<unsigned long long>(bIsNeg ? -nValue : nValue); + unsigned long long nUValue = static_cast<unsigned long long>(bIsNeg ? -nValue : nValue); for (int i = 0; (i != sizeof(unsigned long long) / 2) && (nUValue != 0); ++i) { nNum[i] = static_cast<sal_uInt16>(nUValue & 0xffffUL); |