mount: remove unused inode field from root node

This commit is contained in:
greatroar 2020-02-24 22:47:58 +01:00 committed by Michael Eischer
parent 74ae76036f
commit cfa80e2c6b
1 changed files with 0 additions and 2 deletions

View File

@ -27,7 +27,6 @@ type Config struct {
type Root struct {
repo restic.Repository
cfg Config
inode uint64
blobCache *bloblru.Cache
*SnapshotsDir
@ -50,7 +49,6 @@ func NewRoot(repo restic.Repository, cfg Config) *Root {
root := &Root{
repo: repo,
inode: rootInode,
cfg: cfg,
blobCache: bloblru.New(blobCacheSize),
}