summaryrefslogtreecommitdiff
path: root/flowtop.c
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2015-07-17 15:02:00 +0200
committerTobias Klauser <tklauser@distanz.ch>2015-07-17 15:02:00 +0200
commit95c4582b742fd4fa58e5f14971164b941b0f730d (patch)
tree9aff98311d9976d08246d8b321c77bacd0c1f1d3 /flowtop.c
parentc5ff2059f619ac91c14d55412314d1c67de6a593 (diff)
flowtop: Indentation fixes for multiline function signatures
Align the arguments/parameters on successive lines with the opening parenthesis. Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'flowtop.c')
-rw-r--r--flowtop.c6
1 files 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;