diff options
Diffstat (limited to 'includes/Output.h')
-rw-r--r-- | includes/Output.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/Output.h b/includes/Output.h index c80cf40..59a157e 100644 --- a/includes/Output.h +++ b/includes/Output.h @@ -13,7 +13,7 @@ class Output : public SeekableHandle { virtual bool isClosed(); virtual bool canWrite(); 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(); } @@ -21,7 +21,7 @@ class Output : 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; }; |