1
0
Fork 0

fs: befs: remove useless initialization to zero

node_off is unconditionally set to bt_super.root_node_ptr, so no need to
init it to zero.

Signed-off-by: Salah Triki <salah.triki@gmail.com>
Acked-by: Luis de Bethencourt <luisbg@osg.samsung.com>
steinar/wifi_calib_4_9_kernel
Salah Triki 2016-07-31 21:34:28 +01:00 committed by Luis de Bethencourt
parent 88ff34446b
commit 143d2a615f
1 changed files with 1 additions and 1 deletions

View File

@ -420,7 +420,7 @@ befs_btree_read(struct super_block *sb, const befs_data_stream *ds,
{
struct befs_btree_node *this_node;
befs_btree_super bt_super;
befs_off_t node_off = 0;
befs_off_t node_off;
int cur_key;
fs64 *valarray;
char *keystart;