]> Sergey Matveev's repositories - btrtrc.git/blobdiff - fs/filenode.go
Fixes for storage tests on Windows
[btrtrc.git] / fs / filenode.go
index a7c807b4fe897d0f50d2c649cb6566f66706cd7b..a7c03cc6aa9ca7d9c5554986319aa30d233de372 100644 (file)
@@ -3,8 +3,8 @@ package torrentfs
 import (
        "context"
 
-       "bazil.org/fuse"
-       fusefs "bazil.org/fuse/fs"
+       "github.com/anacrolix/fuse"
+       fusefs "github.com/anacrolix/fuse/fs"
 
        "github.com/anacrolix/torrent"
 )
@@ -14,9 +14,7 @@ type fileNode struct {
        f *torrent.File
 }
 
-var (
-       _ fusefs.NodeOpener = fileNode{}
-)
+var _ fusefs.NodeOpener = fileNode{}
 
 func (fn fileNode) Attr(ctx context.Context, attr *fuse.Attr) error {
        attr.Size = uint64(fn.f.Length())