diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-05-09 14:27:42 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-05-09 14:28:29 +0100 |
commit | f909446caae6d4e091c2bb2dae36ae648491eef2 (patch) | |
tree | 18d52431c0be7d855d65459a4af87325eb5df282 /lotuswordpro | |
parent | 13e6af8860f42daf49474a7ae9779baa0f8f2630 (diff) |
WaE: C4146 unary operator applied to unsigned type
Change-Id: I5326baab63d8ec30a2f7fcb027c4a5a5526acdf0
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/explode.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/explode.cxx b/lotuswordpro/source/filter/explode.cxx index 241d43d4a1a6..625d1cf1b0b6 100644 --- a/lotuswordpro/source/filter/explode.cxx +++ b/lotuswordpro/source/filter/explode.cxx @@ -306,7 +306,7 @@ sal_Int32 Decompression::explode() m_pOutStream->Flush(); // point back to copy position and read bytes - m_pOutStream->SeekRel((long)-distance); + m_pOutStream->SeekRel(-(long)distance); sal_uInt8 sTemp[MAXWIN]; sal_uInt32 nRead = distance > Length? Length:distance; m_pOutStream->Read(sTemp, nRead); |