diff options
author | Chris Mason <chris.mason@fusionio.com> | 2012-06-15 20:02:02 -0400 |
---|---|---|
committer | Chris Mason <chris.mason@fusionio.com> | 2012-06-15 20:06:54 -0400 |
commit | 4325edd0786fdd3909f9550e52a963b2fe54f78b (patch) | |
tree | d32c73bace59fa695eedf647e9408c49e8f43fd5 /fs/btrfs/ctree.c | |
parent | 9c106405ddf893fcd04cd46555464417d2df8451 (diff) |
Btrfs: init old_generation in get_old_root
gcc was giving an uninit variable warning here. Strictly
speaking we don't need to init it, but this will make things
much less error prone.
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
Diffstat (limited to 'fs/btrfs/ctree.c')
-rw-r--r-- | fs/btrfs/ctree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/ctree.c b/fs/btrfs/ctree.c index 04b06bcf2ca9..15cbc2bf4ff0 100644 --- a/fs/btrfs/ctree.c +++ b/fs/btrfs/ctree.c | |||
@@ -1175,7 +1175,7 @@ get_old_root(struct btrfs_root *root, u64 time_seq) | |||
1175 | struct tree_mod_elem *tm; | 1175 | struct tree_mod_elem *tm; |
1176 | struct extent_buffer *eb; | 1176 | struct extent_buffer *eb; |
1177 | struct tree_mod_root *old_root = NULL; | 1177 | struct tree_mod_root *old_root = NULL; |
1178 | u64 old_generation; | 1178 | u64 old_generation = 0; |
1179 | u64 logical; | 1179 | u64 logical; |
1180 | 1180 | ||
1181 | eb = btrfs_read_lock_root_node(root); | 1181 | eb = btrfs_read_lock_root_node(root); |