summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorumutbayramoglu <umut265@gmail.com>2020-12-07 20:37:42 +0000
committerStephan Bergmann <sbergman@redhat.com>2021-01-05 08:36:28 +0100
commit9feea2ecc59c6daa42dece6c30cf33f5e7df7561 (patch)
tree35400e73889c456041b13e37454097283423c7ec /tools
parentbf81aa59d86ef749dc37cdd49c6fc745376f857d (diff)
tdf#96505 : Get rid of cargo cult long integer literals
Change-Id: I7b269fb5bafceba071ebe649a696ef61301c4018 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/107366 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Reviewed-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/source/stream/strmunx.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/source/stream/strmunx.cxx b/tools/source/stream/strmunx.cxx
index 249af86fc90f..40cbe382213a 100644
--- a/tools/source/stream/strmunx.cxx
+++ b/tools/source/stream/strmunx.cxx
@@ -275,7 +275,7 @@ sal_uInt64 SvFileStream::SeekPos(sal_uInt64 const nPos)
if ( rc != osl_File_E_None )
{
SetError( SVSTREAM_SEEK_ERROR );
- return 0L;
+ return 0;
}
if ( nPos != STREAM_SEEK_TO_END )
return nPos;
@@ -283,7 +283,7 @@ sal_uInt64 SvFileStream::SeekPos(sal_uInt64 const nPos)
return nNewPos;
}
SetError( SVSTREAM_GENERALERROR );
- return 0L;
+ return 0;
}
void SvFileStream::FlushData()