Staging: lustre: indent an if statement
authorDan Carpenter <dan.carpenter@oracle.com>
Thu, 13 Oct 2016 08:52:02 +0000 (11:52 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 16 Oct 2016 08:27:40 +0000 (10:27 +0200)
This if statement wasn't intended.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: James Simmons <jsimmons@infradead.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/obdclass/cl_object.c

index cda01b8..b4600c4 100644 (file)
@@ -335,7 +335,7 @@ int cl_object_getstripe(const struct lu_env *env, struct cl_object *obj,
                if (obj->co_ops->coo_getstripe) {
                        result = obj->co_ops->coo_getstripe(env, obj, uarg);
                        if (result)
-                       break;
+                               break;
                }
        }
        return result;