diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-16 14:45:49 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-17 08:14:31 +0200 |
commit | ff1f6a5fc25db062e9a83521a657062f62f03ba6 (patch) | |
tree | 272dfa9af5ead31b61c1be34afcaf4402ff4ad77 /sot/source/sdstor/stgstrms.cxx | |
parent | 224b770fa77fe12ad5dc543ce020aca316b6558d (diff) |
remove UL/L suffixes from integer constants in initialiser/call expressions
Change-Id: Iae081567c4fa5b88edbd12cf2fbafd2b8f31b300
Reviewed-on: https://gerrit.libreoffice.org/41214
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sot/source/sdstor/stgstrms.cxx')
-rw-r--r-- | sot/source/sdstor/stgstrms.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sot/source/sdstor/stgstrms.cxx b/sot/source/sdstor/stgstrms.cxx index 4e957d3e9355..a60b13db55b7 100644 --- a/sot/source/sdstor/stgstrms.cxx +++ b/sot/source/sdstor/stgstrms.cxx @@ -1145,8 +1145,8 @@ bool StgTmpStrm::Copy( StgTmpStrm& rSrc ) if( GetError() == ERRCODE_NONE ) { std::unique_ptr<sal_uInt8[]> p(new sal_uInt8[ 4096 ]); - rSrc.Seek( 0L ); - Seek( 0L ); + rSrc.Seek( 0 ); + Seek( 0 ); while( n ) { const sal_uInt64 nn = std::min<sal_uInt64>(n, 4096); @@ -1204,7 +1204,7 @@ void StgTmpStrm::SetSize(sal_uInt64 n) std::unique_ptr<sal_uInt8[]> p(new sal_uInt8[ 4096 ]); if( i ) { - Seek( 0L ); + Seek( 0 ); while( i ) { const sal_uInt64 nb = std::min<sal_uInt64>(i, 4096); |