staging: lustre: obdclass: llog: drop trivially useless initialization
authorJulia Lawall <Julia.Lawall@lip6.fr>
Sat, 20 Jun 2015 19:07:52 +0000 (21:07 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 14 Jul 2015 02:37:04 +0000 (19:37 -0700)
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>
drivers/staging/lustre/lustre/obdclass/llog.c

index 9af2da618a4db5331d0dfab78203cc93a664b72c..facc8351fcea50163c83b2c12b29ad31500f3800 100644 (file)
@@ -907,7 +907,7 @@ int llog_is_empty(const struct lu_env *env, struct llog_ctxt *ctxt,
                  char *name)
 {
        struct llog_handle      *llh;
-       int                      rc = 0;
+       int                      rc;
 
        rc = llog_open(env, ctxt, &llh, NULL, name, LLOG_OPEN_EXISTS);
        if (rc < 0) {