Re: [f2fs-dev] [PATCH][next] f2fs: remove redundant assignment to variable err

2023-06-16 Thread patchwork-bot+f2fs
Hello: This patch was applied to jaegeuk/f2fs.git (dev) by Jaegeuk Kim : On Fri, 16 Jun 2023 15:20:09 +0100 you wrote: > The assignment to variable err is redundant since the code jumps to > label next and err is then re-assigned a new value on the call to > sanity_check_node_chain. Remove the

[f2fs-dev] [PATCH][next] f2fs: remove redundant assignment to variable err

2023-06-16 Thread Colin Ian King
The assignment to variable err is redundant since the code jumps to label next and err is then re-assigned a new value on the call to sanity_check_node_chain. Remove the assignment. Cleans up clang scan build warning: fs/f2fs/recovery.c:464:6: warning: Value stored to 'err' is never read