This commit is contained in:
Chris Lu
2020-10-24 20:12:04 -07:00
parent 326a4bbaf5
commit da36abf033
5 changed files with 5 additions and 5 deletions

View File

@@ -126,7 +126,7 @@ func (fh *FileHandle) readFromChunks(buff []byte, offset int64) (int64, error) {
totalRead, err := fh.f.reader.ReadAt(buff, offset)
if err != nil && err != io.EOF{
if err != nil && err != io.EOF {
glog.Errorf("file handle read %s: %v", fh.f.fullpath(), err)
}