f2fs: remove redundant initialization of pointer 'p'
authorColin Ian King <colin.king@canonical.com>
Wed, 21 Feb 2018 18:13:40 +0000 (18:13 +0000)
committerJaegeuk Kim <jaegeuk@kernel.org>
Sun, 8 Apr 2018 11:11:19 +0000 (04:11 -0700)
commitc8e77267ed1f529b58f1e3b13e20f3bb27f674d3
tree47897c2b2c52644a73a7c963fb7432b70841674d
parent755dcc3262d42158ee546adcfbcb61175462251b
f2fs: remove redundant initialization of pointer 'p'

Pointer p is initialized with a value that is never read and is later
re-assigned a new value, hence the initialization is redundant and can
be removed.

Cleans up clang warning:
fs/f2fs/extent_cache.c:463:19: warning: Value stored to 'p' during
its initialization is never read

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/extent_cache.c