summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sot/source/sdstor/storinfo.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sot/source/sdstor/storinfo.cxx b/sot/source/sdstor/storinfo.cxx
index bfcd21410c49..1c5025bf13f2 100644
--- a/sot/source/sdstor/storinfo.cxx
+++ b/sot/source/sdstor/storinfo.cxx
@@ -43,7 +43,7 @@ SotClipboardFormatId ReadClipboardFormat( SvStream & rStm )
else
rStm.SetError( SVSTREAM_GENERALERROR );
}
- else if( nLen == -1L )
+ else if( nLen == -1 )
{
// Windows clipboard format
// SV und Win stimmen ueberein (bis einschl. SotClipboardFormatId::GDIMETAFILE)
@@ -51,7 +51,7 @@ SotClipboardFormatId ReadClipboardFormat( SvStream & rStm )
rStm.ReadUInt32( nTmp );
nFormat = static_cast<SotClipboardFormatId>(nTmp);
}
- else if( nLen == -2L )
+ else if( nLen == -2 )
{
sal_uInt32 nTmp;
rStm.ReadUInt32( nTmp );