mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-04-01 03:44:08 +00:00
Btrfs: avoid uninit variable warnings in ordered-data.c
This one isn't really an uninit variable, but for pretty obscure reasons. Let's make it clearly correct. Signed-off-by: Chris Mason <chris.mason@oracle.com>
This commit is contained in:
parent
b31eabd86e
commit
c87fb6fdca
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ static inline struct rb_node *tree_search(struct btrfs_ordered_inode_tree *tree,
|
||||||
u64 file_offset)
|
u64 file_offset)
|
||||||
{
|
{
|
||||||
struct rb_root *root = &tree->tree;
|
struct rb_root *root = &tree->tree;
|
||||||
struct rb_node *prev;
|
struct rb_node *prev = NULL;
|
||||||
struct rb_node *ret;
|
struct rb_node *ret;
|
||||||
struct btrfs_ordered_extent *entry;
|
struct btrfs_ordered_extent *entry;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue