diff options
Diffstat (limited to 'cmd/btrfs-dump-tree/main.go')
-rw-r--r-- | cmd/btrfs-dump-tree/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/btrfs-dump-tree/main.go b/cmd/btrfs-dump-tree/main.go index c7e4beb..7f1aba4 100644 --- a/cmd/btrfs-dump-tree/main.go +++ b/cmd/btrfs-dump-tree/main.go @@ -64,7 +64,7 @@ func Main(imgfilename string) (err error) { } } if err := fs.TreeWalk(superblock.Data.RootTree, btrfs.TreeWalkHandler{ - Item: func(_ btrfs.TreeWalkPath, item btrfs.Item) error { + Item: func(_ btrfs.TreePath, item btrfs.Item) error { if item.Head.Key.ItemType != btrfsitem.ROOT_ITEM_KEY { return nil } |