Further work on Inode

This commit is contained in:
Caleb Gardner
2020-11-12 09:50:52 -06:00
parent 8fa093763f
commit 78c35cf720
4 changed files with 154 additions and 21 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ func (r *Reader) Seek(offset int64, whence int) (int64, error) {
n, err := r.Read(make([]byte, offset))
return int64(n), err
case io.SeekEnd:
return 0, errors.New("SeekEnd is NOT currently supported")
return 0, errors.New("SeekEnd is NOT supported")
}
return 0, errors.New("incorrect whence")
}