From 6111b265e738fa383741569bdd2935a35fec15e6 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Sun, 16 Aug 2020 01:38:16 -0700 Subject: [PATCH] fix compilation --- weed/filer2/filechunks.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/weed/filer2/filechunks.go b/weed/filer2/filechunks.go index 9fd2fcbd2..d7c31bf0f 100644 --- a/weed/filer2/filechunks.go +++ b/weed/filer2/filechunks.go @@ -7,7 +7,6 @@ import ( "sort" "sync" - "github.com/chrislusf/seaweedfs/weed/glog" "github.com/chrislusf/seaweedfs/weed/pb/filer_pb" ) @@ -140,7 +139,7 @@ func ViewFromVisibleIntervals(visibles []VisibleInterval, offset int64, size int if chunkStart < chunkStop { views = append(views, &ChunkView{ FileId: chunk.fileId, - Offset: chunkStart-chunk.start, + Offset: chunkStart - chunk.start, Size: uint64(chunkStop - chunkStart), LogicOffset: chunkStart, ChunkSize: chunk.chunkSize,