From 95c4582b742fd4fa58e5f14971164b941b0f730d Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Fri, 17 Jul 2015 15:02:00 +0200 Subject: flowtop: Indentation fixes for multiline function signatures Align the arguments/parameters on successive lines with the opening parenthesis. Signed-off-by: Tobias Klauser --- flowtop.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flowtop.c b/flowtop.c index a522daf..bfd43a9 100644 --- a/flowtop.c +++ b/flowtop.c @@ -1131,7 +1131,7 @@ static void conntrack_acct_enable(void) /* We can still work w/o traffic accounting so just warn about error */ if (sysctl_get_int("net/netfilter/nf_conntrack_acct", &nfct_acct_val)) { fprintf(stderr, "Can't read net/netfilter/nf_conntrack_acct: %s\n", - strerror(errno)); + strerror(errno)); } if (nfct_acct_val == 1) @@ -1139,12 +1139,12 @@ static void conntrack_acct_enable(void) if (sysctl_set_int("net/netfilter/nf_conntrack_acct", 1)) { fprintf(stderr, "Can't write net/netfilter/nf_conntrack_acct: %s\n", - strerror(errno)); + strerror(errno)); } } static int dump_cb(enum nf_conntrack_msg_type type, - struct nf_conntrack *ct, void *data __maybe_unused) + struct nf_conntrack *ct, void *data __maybe_unused) { struct flow_entry *n; -- cgit v1.2.3-54-g00ecf