OSDN Git Service
(root)
/
uclinux-h8
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f13d783
)
rhashtable: fix indentation of a continue statement
author
Colin Ian King
<colin.king@canonical.com>
Fri, 18 Sep 2020 21:51:26 +0000
(22:51 +0100)
committer
David S. Miller
<davem@davemloft.net>
Sun, 20 Sep 2020 21:10:06 +0000
(14:10 -0700)
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>
lib/test_rhashtable.c
patch
|
blob
|
history
diff --git
a/lib/test_rhashtable.c
b/lib/test_rhashtable.c
index
c5a6fef
..
76c607e
100644
(file)
--- 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;
}
}