ipv6: remove redundant store to value after addition
authorColin Ian King <colin.i.king@gmail.com>
Tue, 28 Jun 2022 14:54:06 +0000 (15:54 +0100)
committerJakub Kicinski <kuba@kernel.org>
Thu, 30 Jun 2022 03:42:42 +0000 (20:42 -0700)
commit74fd304f2395e574a21cd06912f860771c82ee88
tree6fa9bfd8b41108df27bf47716dde181cb7550767
parent3eb4a4c3442c0642feaf466ecf6fe3cfb4af2c43
ipv6: remove redundant store to value after addition

There is no need to store the result of the addition back to variable count
after the addition. The store is redundant, replace += with just +

Cleans up clang scan build warning:
warning: Although the value stored to 'count' is used in the enclosing
expression, the value is never actually read from 'count'

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Reviewed-by: David Ahern <dsahern@kernel.org>
Link: https://lore.kernel.org/r/20220628145406.183527-1-colin.i.king@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/ipv6/route.c