diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2013-12-20 20:23:03 -0800 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2013-12-20 20:23:03 -0800 |
commit | 77e9a8bb42285c118a8a0d51fa166d838cc9f473 (patch) | |
tree | da289c71f009ce12c9e58ce943680a36f3d9cd11 /includes/BStream.h | |
parent | 16594884da1c20c60fa1211c76939696547c02b5 (diff) |
Switching off_t to off64_t.
Diffstat (limited to 'includes/BStream.h')
-rw-r--r-- | includes/BStream.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/BStream.h b/includes/BStream.h index 2fa842e..fd00b83 100644 --- a/includes/BStream.h +++ b/includes/BStream.h @@ -13,7 +13,7 @@ class BStream : public Handle { virtual bool canRead(); virtual const char * getName(); virtual ssize_t read(void * buf, size_t count) throw (GeneralException); - virtual off_t getSize(); + virtual off64_t getSize(); int peekNextByte(); String readString(bool putNL = false); bool isEmpty() { return m_availBytes == 0; } |