summaryrefslogtreecommitdiff
path: root/lib/common/PartialReadStream.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/common/PartialReadStream.h')
-rw-r--r--lib/common/PartialReadStream.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/common/PartialReadStream.h b/lib/common/PartialReadStream.h
index b534d053..6f0e097b 100644
--- a/lib/common/PartialReadStream.h
+++ b/lib/common/PartialReadStream.h
@@ -1,4 +1,4 @@
-// distribution boxbackup-0.10 (svn version: 494)
+// distribution boxbackup-0.11rc1 (svn version: 2023_2024)
//
// Copyright (c) 2003 - 2006
// Ben Summers and contributors. All rights reserved.
@@ -61,7 +61,7 @@
class PartialReadStream : public IOStream
{
public:
- PartialReadStream(IOStream &rSource, int BytesToRead);
+ PartialReadStream(IOStream &rSource, pos_type BytesToRead);
~PartialReadStream();
private:
// no copying allowed
@@ -77,7 +77,7 @@ public:
private:
IOStream &mrSource;
- int mBytesLeft;
+ pos_type mBytesLeft;
};
#endif // PARTIALREADSTREAM__H