commit | 5a091a1ff82eee5aae584e812831a9d671d94382 | [log] [tgz] |
---|---|---|
author | Aya Mahfouz <mahfouz.saif.elyazal@gmail.com> | Fri Feb 27 15:07:58 2015 +0200 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Sun Mar 01 16:28:06 2015 -0800 |
tree | 7507b94b49cdf0899af6f39421e8309ce9eeeef4 | |
parent | cf9cac2286b61f1b5ed0da01daa4e574e491ad92 [diff] |
staging: lustre: llite: remove unused variable This patch removes a variable that was simply used to store the return value of a function call before returning it. The issue was detected and resolved using the following coccinelle script: @@ identifier len,f; @@ -int len; ... when != len when strict -len = +return f(...); -return len; Signed-off-by: Aya Mahfouz <mahfouz.saif.elyazal@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>