Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1452888

[PATCH 5/6] fs: befs: remove in vain variable assignment

From Salah Triki <salah.triki@gmail.com>
Newsgroups linux.kernel
Subject [PATCH 5/6] fs: befs: remove in vain variable assignment
Date 2016-07-31 22:40 +0200
Message-ID <s15GF-4Uk-15@gated-at.bofh.it> (permalink)
References <s15GF-4Uk-7@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


There is no need to init res, since it will be overwitten later by
befs_fblock2brun().

Signed-off-by: Salah Triki <salah.triki@gmail.com>
---
 fs/befs/linuxvfs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/befs/linuxvfs.c b/fs/befs/linuxvfs.c
index 6bc5b40..2b68c81 100644
--- a/fs/befs/linuxvfs.c
+++ b/fs/befs/linuxvfs.c
@@ -120,7 +120,7 @@ befs_get_block(struct inode *inode, sector_t block,
 	struct super_block *sb = inode->i_sb;
 	befs_data_stream *ds = &BEFS_I(inode)->i_data.ds;
 	befs_block_run run = BAD_IADDR;
-	int res = 0;
+	int res;
 	ulong disk_off;
 
 	befs_debug(sb, "---> befs_get_block() for inode %lu, block %ld",
-- 
1.9.1

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH 5/6] fs: befs: remove in vain variable assignment Salah Triki <salah.triki@gmail.com> - 2016-07-31 22:40 +0200
  Re: [PATCH 5/6] fs: befs: remove in vain variable assignment Luis de Bethencourt <luisbg@osg.samsung.com> - 2016-08-01 16:20 +0200

csiph-web