diff options
-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); |