summaryrefslogtreecommitdiff
path: root/disk-io.h
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.cz>2015-02-12 13:41:00 +0100
committerDavid Sterba <dsterba@suse.cz>2015-02-12 13:41:00 +0100
commitc02b4adcb6a529a29f429db3020405f9aefc2f0d (patch)
tree703eea6854b39d5713f585ea3ad020661ea6d016 /disk-io.h
parentd09504edb148336893d2a67c4cceb09b640ade14 (diff)
btrfs-progs: fix typo in OPEN_CTREE flag
Introduced in "btrfs-progs: Add new btrfs_open_ctree_flags CHUNK_ONLY" by my local fixups. Signed-off-by: David Sterba <dsterba@suse.cz>
Diffstat (limited to 'disk-io.h')
-rw-r--r--disk-io.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/disk-io.h b/disk-io.h
index 7a2a597f..4caebeb1 100644
--- a/disk-io.h
+++ b/disk-io.h
@@ -40,10 +40,10 @@ enum btrfs_open_ctree_flags {
*/
OPEN_CTREE_SUPPRESS_CHECK_BLOCK_ERRORS = (1 << 8),
/* Return chunk root */
- __OPEN_CTREEE_RETURN_CHUNK_ROOT = (1 << 9),
+ __OPEN_CTREE_RETURN_CHUNK_ROOT = (1 << 9),
OPEN_CTREE_CHUNK_ROOT_ONLY = OPEN_CTREE_PARTIAL +
OPEN_CTREE_SUPPRESS_CHECK_BLOCK_ERRORS +
- __OPEN_CTREEE_RETURN_CHUNK_ROOT,
+ __OPEN_CTREE_RETURN_CHUNK_ROOT,
/*
* TODO: cleanup: Split the open_ctree_flags into more indepent
* tree bits.