summaryrefslogtreecommitdiff
path: root/include/tools
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2016-09-14 19:47:52 +0200
committerMichael Stahl <mstahl@redhat.com>2016-09-15 12:01:12 +0200
commitab7d6b0d4fa8c91306f7b4f460a4596abc159912 (patch)
treebc6d15b4e79fcf42a5ed3c86b8267f49ea7f3e3a /include/tools
parentb647996a9babbee7b33cf45192e57df6a124628b (diff)
tools: SvFileStream::LockRange/UnlockRange take 64 bit positions
Change-Id: I85d9cc00daaaa127817aaaa6f54d3e6f86907fb6
Diffstat (limited to 'include/tools')
-rw-r--r--include/tools/stream.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/tools/stream.hxx b/include/tools/stream.hxx
index 6a37b265a03a..2154c6f9cccb 100644
--- a/include/tools/stream.hxx
+++ b/include/tools/stream.hxx
@@ -573,8 +573,8 @@ private:
SvFileStream (const SvFileStream&) = delete;
SvFileStream & operator= (const SvFileStream&) = delete;
- bool LockRange( std::size_t nByteOffset, std::size_t nBytes );
- bool UnlockRange( std::size_t nByteOffset, std::size_t nBytes );
+ bool LockRange( sal_uInt64 nByteOffset, std::size_t nBytes );
+ bool UnlockRange( sal_uInt64 nByteOffset, std::size_t nBytes );
bool LockFile();
void UnlockFile();