commit | e24113769960980579610ecfd657bb17f19373a3 | [log] [tgz] |
---|---|---|
author | Arushi Singhal <arushisinghal19971997@gmail.com> | Wed Mar 29 20:27:52 2017 +0530 |
committer | Simon Horman <horms@verge.net.au> | Thu Mar 30 14:54:47 2017 +0200 |
tree | 63ae0ef0693317b3b4745a7977e5e3fc50b38ce6 | |
parent | 848850a3e9161e2cdcbb5cef7edc21ba49252ad1 [diff] |
ipvs: remove unused variable This patch uses the following coccinelle script to remove a variable that was simply used to store the return value of a function call before returning it: @@ identifier len,f; @@ -int len; ... when != len when strict -len = +return f(...); -return len; Signed-off-by: Arushi Singhal <arushisinghal19971997@gmail.com> Signed-off-by: Simon Horman <horms@verge.net.au>