summaryrefslogtreecommitdiff
path: root/includes/Input.h
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2013-12-20 20:23:03 -0800
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2013-12-20 20:23:03 -0800
commit77e9a8bb42285c118a8a0d51fa166d838cc9f473 (patch)
treeda289c71f009ce12c9e58ce943680a36f3d9cd11 /includes/Input.h
parent16594884da1c20c60fa1211c76939696547c02b5 (diff)
Switching off_t to off64_t.
Diffstat (limited to 'includes/Input.h')
-rw-r--r--includes/Input.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/Input.h b/includes/Input.h
index be9e4cf..a9bfa8c 100644
--- a/includes/Input.h
+++ b/includes/Input.h
@@ -14,7 +14,7 @@ class Input : public SeekableHandle {
virtual bool isClosed();
virtual bool canRead();
virtual const char * getName();
- virtual off_t getSize();
+ virtual off64_t getSize();
virtual time_t getMTime();
virtual bool isPendingComplete();
const char * getFName() { return m_fname.to_charp(); }
@@ -22,7 +22,7 @@ class Input : public SeekableHandle {
int m_fd = -1;
String m_name;
String m_fname;
- off_t m_size = -1;
+ off64_t m_size = -1;
time_t m_mtime = -1;
void * m_pendingOp = NULL;
};