diff mbox

crypto: tcrypt - add a missing tab

Message ID 20160629144130.GC22818@mwanda (mailing list archive)
State Not Applicable
Delegated to: Herbert Xu
Headers show

Commit Message

Dan Carpenter June 29, 2016, 2:41 p.m. UTC
The "goto out;" line isn't indented far enough.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>

--
To unsubscribe from this list: send the line "unsubscribe linux-crypto" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Herbert Xu June 29, 2016, 2:43 p.m. UTC | #1
On Wed, Jun 29, 2016 at 05:41:30PM +0300, Dan Carpenter wrote:
> The "goto out;" line isn't indented far enough.
> 
> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>

Sorry, but this has already been fixed :)
diff mbox

Patch

diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c
index 6ef7815..117f19e 100644
--- a/crypto/tcrypt.c
+++ b/crypto/tcrypt.c
@@ -629,7 +629,7 @@  static void test_mb_ahash_speed(const char *algo, unsigned int sec,
 			printk(KERN_ERR
 				"template (%u) too big for tvmem (%lu)\n",
 					speed[i].blen, TVMEMSIZE * PAGE_SIZE);
-		goto out;
+			goto out;
 		}
 
 		if (speed[i].klen)