diff mbox series

rhashtable: fix indentation of a continue statement

Message ID 20200918215126.49236-1-colin.king@canonical.com
State New
Headers show
Series rhashtable: fix indentation of a continue statement | expand

Commit Message

Colin King Sept. 18, 2020, 9:51 p.m. UTC
From: Colin Ian King <colin.king@canonical.com>

A continue statement is indented incorrectly, add in the missing
tab.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 lib/test_rhashtable.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Herbert Xu Sept. 20, 2020, 1:23 p.m. UTC | #1
On Fri, Sep 18, 2020 at 10:51:26PM +0100, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> A continue statement is indented incorrectly, add in the missing
> tab.
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  lib/test_rhashtable.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Acked-by: Herbert Xu <herbert@gondor.apana.org.au>
David Miller Sept. 20, 2020, 9:10 p.m. UTC | #2
From: Colin King <colin.king@canonical.com>

Date: Fri, 18 Sep 2020 22:51:26 +0100

> From: Colin Ian King <colin.king@canonical.com>

> 

> A continue statement is indented incorrectly, add in the missing

> tab.

> 

> Signed-off-by: Colin Ian King <colin.king@canonical.com>


Applied.
diff mbox series

Patch

diff --git a/lib/test_rhashtable.c b/lib/test_rhashtable.c
index c5a6fef7b45d..76c607ee6db5 100644
--- a/lib/test_rhashtable.c
+++ b/lib/test_rhashtable.c
@@ -434,7 +434,7 @@  static int __init test_rhltable(unsigned int entries)
 		} else {
 			if (WARN(err != -ENOENT, "removed non-existent element, error %d not %d",
 				 err, -ENOENT))
-			continue;
+				continue;
 		}
 	}