aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Ian King <[email protected]>2020-09-18 22:51:26 +0100
committerDavid S. Miller <[email protected]>2020-09-20 14:10:06 -0700
commit769f5083c5e2de371d9a451e3bb9d4aaa24f3346 (patch)
treebbee596b2a016da371c7ef90b256e3e2e87911e6
parentf13d783a184e4868c5fdbdf20c90a8e323f66dd7 (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 <[email protected]> Acked-by: Herbert Xu <[email protected]> Signed-off-by: David S. Miller <[email protected]>
-rw-r--r--lib/test_rhashtable.c2
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;
}
}