commit | 0d0c8b75713491cdb3f6e7792b68ccaae9e7518e | [log] [tgz] |
---|---|---|
author | Julia Lawall <Julia.Lawall@lip6.fr> | Sat Jun 20 21:07:52 2015 +0200 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Mon Jul 13 19:37:04 2015 -0700 |
tree | c722f642b0190cd9a76f1aa3e9d115936445fdae | |
parent | a84b7fd5f7539a1eca943a17ba9d7cafc10f3f90 [diff] |
staging: lustre: obdclass: llog: drop trivially useless initialization Remove initialization of a variable that is immediately reassigned. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ type T; identifier x; constant C; expression e; @@ T x - = C ; x = e; // </smpl> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>