diff options
Diffstat (limited to 'includes/cdreader.h')
-rw-r--r-- | includes/cdreader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/cdreader.h b/includes/cdreader.h index ed3bc00..1909fe2 100644 --- a/includes/cdreader.h +++ b/includes/cdreader.h @@ -16,7 +16,7 @@ class cdreader : public Handle { virtual bool CanRead() const; virtual bool CanSeek() const; virtual ssize_t read(void *buf, size_t count) throw (GeneralException); - virtual off_t seek(off_t, int) throw (GeneralException); + virtual off_t seek(off_t, int = SEEK_SET) throw (GeneralException); virtual String GetName() const; virtual ssize_t GetSize() const; virtual void getsector(void *, int = -1) throw (GeneralException); |