[Drbd-dev] [PATCH 15/17] lru_cache: remove unnecessary space before arguments
Tobin C. Harding
me at tobin.cc
Mon Oct 2 00:34:14 CEST 2017
checkpatch emits WARNING: Unnecessary space before function pointer
arguments.
Remove unnecessary space before function arguments.
Signed-off-by: Tobin C. Harding <me at tobin.cc>
---
lib/lru_cache.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/lru_cache.c b/lib/lru_cache.c
index 012c6b8..09fdb7c 100644
--- a/lib/lru_cache.c
+++ b/lib/lru_cache.c
@@ -654,7 +654,7 @@ void lc_set(struct lru_cache *lc, unsigned int enr, int index)
* Note: a leading space ' ' and trailing newline '\n' is implied.
*/
void lc_seq_dump_details(struct seq_file *seq, struct lru_cache *lc, char *utext,
- void (*detail) (struct seq_file *, struct lc_element *))
+ void (*detail)(struct seq_file *, struct lc_element *))
{
unsigned int nr_elements = lc->nr_elements;
struct lc_element *e;
--
2.7.4
More information about the drbd-dev
mailing list