diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2022-07-01 23:07:21 -0600 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2022-07-01 23:09:19 -0600 |
commit | 2202cfba154b69a947ae45629ef8105de7f63ac4 (patch) | |
tree | af6fbe8c84b59b709bfbbb82d1c14c35ac0e3748 /cmd/btrfs-dump-tree/main.go | |
parent | f1bc48ee12c6873b6b57a2403325765e987ad813 (diff) |
Rename TreeWalkPath→TreePath
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 } |