From: Colin Ian King Date: Fri, 18 Sep 2020 21:51:26 +0000 (+0100) Subject: rhashtable: fix indentation of a continue statement X-Git-Tag: xarray-5.12~1417^2~11 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=769f5083c5e2de371d9a451e3bb9d4aaa24f3346;p=users%2Fwilly%2Fxarray.git rhashtable: fix indentation of a continue statement A continue statement is indented incorrectly, add in the missing tab. Signed-off-by: Colin Ian King Acked-by: Herbert Xu Signed-off-by: David S. Miller --- 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; } }