diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2022-08-17 20:26:52 -0600 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2022-08-17 22:41:05 -0600 |
commit | 273890421b31aa7b43d778e4da3de16659e77d73 (patch) | |
tree | a46cd884fe2132a6c69d7d1f9c8ddc84509b4afa /lib/btrfsprogs/btrfsutil | |
parent | 6fc662d5faa238cc71d06c2c888858747c55c55a (diff) |
tools: Upgrade to Go 1.19
1. Edit Makefile:goversion
2. Run `make go-mod-tidy`
3. Run `gofmt -s -w .`
4. Look at the ignore-whitespace-change diff and fixup band gofmt changes
Diffstat (limited to 'lib/btrfsprogs/btrfsutil')
-rw-r--r-- | lib/btrfsprogs/btrfsutil/broken_btree.go | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/btrfsprogs/btrfsutil/broken_btree.go b/lib/btrfsprogs/btrfsutil/broken_btree.go index 7fc812d..0d71cfb 100644 --- a/lib/btrfsprogs/btrfsutil/broken_btree.go +++ b/lib/btrfsprogs/btrfsutil/broken_btree.go @@ -108,14 +108,14 @@ var _ btrfs.Trees = (*brokenTrees)(nil) // // Of the btrfs.FS.Tree{Verb}Trees methods: // -// - TreeWalk works on broken trees -// - TreeLookup relies on the tree being properly ordered (which a -// broken tree might not be). -// - TreeSearch relies on the tree being properly ordered (which a -// broken tree might not be). -// - TreeSearchAll relies on the tree being properly ordered (which a -// broken tree might not be), and a bad node may cause it to not -// return a truncated list of results. +// - TreeWalk works on broken trees +// - TreeLookup relies on the tree being properly ordered (which a +// broken tree might not be). +// - TreeSearch relies on the tree being properly ordered (which a +// broken tree might not be). +// - TreeSearchAll relies on the tree being properly ordered (which a +// broken tree might not be), and a bad node may cause it to not +// return a truncated list of results. // // NewBrokenTrees attempts to remedy these deficiencies by using // .TreeWalk to build an out-of-FS index of all of the items in the |