summaryrefslogtreecommitdiff
path: root/lib/btrfs/btrfsitem/item_extent.go
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2023-02-12 16:17:34 -0700
committerLuke Shumaker <lukeshu@lukeshu.com>2023-02-12 16:17:34 -0700
commitc55326b0cb6994bb802cf6aac4a296acfb0e41ff (patch)
tree020cb033adb3809bcc8ffed5f56ba8d167b32dd1 /lib/btrfs/btrfsitem/item_extent.go
parentcfcc753dc8906817e15b1b7c36b4dc12462d12e4 (diff)
parentacbbfafa07922b458506b91a58f3a082da453fd1 (diff)
Merge branch 'lukeshu/enums'
Diffstat (limited to 'lib/btrfs/btrfsitem/item_extent.go')
-rw-r--r--lib/btrfs/btrfsitem/item_extent.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/btrfs/btrfsitem/item_extent.go b/lib/btrfs/btrfsitem/item_extent.go
index 3789cfe..871ed90 100644
--- a/lib/btrfs/btrfsitem/item_extent.go
+++ b/lib/btrfs/btrfsitem/item_extent.go
@@ -111,7 +111,7 @@ type TreeBlockInfo struct {
type ExtentFlags uint64
const (
- EXTENT_FLAG_DATA = ExtentFlags(1 << iota)
+ EXTENT_FLAG_DATA ExtentFlags = 1 << iota
EXTENT_FLAG_TREE_BLOCK
)