summaryrefslogtreecommitdiff
path: root/sot
diff options
context:
space:
mode:
authorYusuf Keten <ketenyusuf@gmail.com>2019-12-29 02:52:10 +0300
committerMike Kaganski <mike.kaganski@collabora.com>2020-01-02 19:58:48 +0100
commit9ef226c581ddf025e36aebefaa48c051354c520b (patch)
tree69331ac7b8b5872e00f37a2fbb1e26cd6ebe672f /sot
parentc4aa1277bdb7958990a2cabdbda44c72d9712d3c (diff)
tdf#96505 Get rid of cargo cult long integer literals
Change-Id: I6b21f25738458a1d85905a3a02eb17c51a626b0d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/85932 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'sot')
-rw-r--r--sot/source/sdstor/stgdir.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sot/source/sdstor/stgdir.cxx b/sot/source/sdstor/stgdir.cxx
index f31488fd07c2..4002d637230d 100644
--- a/sot/source/sdstor/stgdir.cxx
+++ b/sot/source/sdstor/stgdir.cxx
@@ -478,7 +478,7 @@ sal_Int32 StgDirEntry::Write( const void* p, sal_Int32 nLen )
if( nNew > m_pStgStrm->GetSize() )
{
if( !SetSize( nNew ) )
- return 0L;
+ return 0;
m_pStgStrm->Pos2Page( m_nPos );
}
nLen = m_pStgStrm->Write( p, nLen );