bcachefs: remove redundant variable tmp
authorColin Ian King <colin.i.king@gmail.com>
Tue, 16 Jan 2024 11:07:23 +0000 (11:07 +0000)
committerKent Overstreet <kent.overstreet@linux.dev>
Sun, 21 Jan 2024 18:27:10 +0000 (13:27 -0500)
commitaead3428e8b7502942356a17f0882d28eb3ff0c3
treecb6ddbdda6b9655a660e373bbd50062e4058cc5d
parentb97de453651f06071afbf52a5614bd55b8cc4740
bcachefs: remove redundant variable tmp

The variable tmp is being assigned a value but it isn't being
read afterwards. The assignment is redundant and so tmp can be
removed.

Cleans up clang scan build warning:
warning: Although the value stored to 'ret' is used in the enclosing
expression, the value is never actually read from 'ret'
[deadcode.DeadStores]

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
fs/bcachefs/rebalance.c