fuse: remove unused context parameter

This commit is contained in:
Michael Eischer 2022-08-19 20:29:33 +02:00
parent a0c1ae9f90
commit dd7cd5b9b3
6 changed files with 14 additions and 14 deletions

View file

@ -20,7 +20,7 @@ type link struct {
inode uint64
}
func newLink(ctx context.Context, root *Root, inode uint64, node *restic.Node) (*link, error) {
func newLink(root *Root, inode uint64, node *restic.Node) (*link, error) {
return &link{root: root, inode: inode, node: node}, nil
}