diff options
author | Colin Ian King <colin.king@canonical.com> | 2020-09-18 22:51:26 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-09-20 14:10:06 -0700 |
commit | 769f5083c5e2de371d9a451e3bb9d4aaa24f3346 (patch) | |
tree | bbee596b2a016da371c7ef90b256e3e2e87911e6 /lib/test_rhashtable.c | |
parent | f13d783a184e4868c5fdbdf20c90a8e323f66dd7 (diff) |
rhashtable: fix indentation of a continue statement
A continue statement is indented incorrectly, add in the missing
tab.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'lib/test_rhashtable.c')
-rw-r--r-- | lib/test_rhashtable.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } } |