aboutsummaryrefslogtreecommitdiffstats
path: root/fs/befs
diff options
context:
space:
mode:
authorSalah Triki <salah.triki@gmail.com>2016-07-31 21:34:28 +0100
committerLuis de Bethencourt <luisbg@osg.samsung.com>2016-10-08 10:01:23 +0100
commit143d2a615fe39dd972a6446d24b298f7544588e9 (patch)
treed3d154473027c76ceba9dc2b42e55991b2276d29 /fs/befs
parentfs: befs: remove in vain variable assignment (diff)
downloadlinux-dev-143d2a615fe39dd972a6446d24b298f7544588e9.tar.xz
linux-dev-143d2a615fe39dd972a6446d24b298f7544588e9.zip
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>
Diffstat (limited to 'fs/befs')
-rw-r--r--fs/befs/btree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/befs/btree.c b/fs/befs/btree.c
index d5641852c5ff..3f1a39166d89 100644
--- a/fs/befs/btree.c
+++ b/fs/befs/btree.c
@@ -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;