Browse Source

Staging: lustre: indent an if statement

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>
Dan Carpenter 9 years ago
parent
commit
08f2a14c97
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/staging/lustre/lustre/obdclass/cl_object.c

+ 1 - 1
drivers/staging/lustre/lustre/obdclass/cl_object.c

@@ -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;