summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2014-10-17 22:01:43 +0200
committerDavid Tardon <dtardon@redhat.com>2014-10-17 22:02:32 +0200
commit5cdede38ff285ff241760e853e04ffd8035a3467 (patch)
treef55ae3343cd1b622ba8f52dd389c2308c32a0a49 /tools
parent90c2dd6efb17bca4f7071b7878f8e954aa270b17 (diff)
now why did i do this?
Change-Id: Icf1fc5643271672761b565c30382e70c689c29b4
Diffstat (limited to 'tools')
-rw-r--r--tools/source/generic/bigint.cxx2
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);