All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] xfs: remove redundant initialization of variable error
@ 2021-06-05  8:52 Shaokun Zhang
  2021-06-07 13:13 ` Carlos Maiolino
  2021-06-12  0:53 ` Darrick J. Wong
  0 siblings, 2 replies; 4+ messages in thread
From: Shaokun Zhang @ 2021-06-05  8:52 UTC (permalink / raw)
  To: linux-xfs; +Cc: Shaokun Zhang, Darrick J. Wong

'error' will be initialized, so clean up the redundant initialization.

Cc: "Darrick J. Wong" <djwong@kernel.org>
Signed-off-by: Shaokun Zhang <zhangshaokun@hisilicon.com>
---
 fs/xfs/xfs_buf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/xfs/xfs_buf.c b/fs/xfs/xfs_buf.c
index 592800c8852f..59991c8c7127 100644
--- a/fs/xfs/xfs_buf.c
+++ b/fs/xfs/xfs_buf.c
@@ -707,7 +707,7 @@ xfs_buf_get_map(
 {
 	struct xfs_buf		*bp;
 	struct xfs_buf		*new_bp;
-	int			error = 0;
+	int			error;
 
 	*bpp = NULL;
 	error = xfs_buf_find(target, map, nmaps, flags, NULL, &bp);
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-06-12  0:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-05  8:52 [PATCH] xfs: remove redundant initialization of variable error Shaokun Zhang
2021-06-07 13:13 ` Carlos Maiolino
2021-06-08  1:50   ` Shaokun Zhang
2021-06-12  0:53 ` Darrick J. Wong

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.