diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2015-07-17 15:02:00 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2015-07-17 15:02:00 +0200 |
commit | 95c4582b742fd4fa58e5f14971164b941b0f730d (patch) | |
tree | 9aff98311d9976d08246d8b321c77bacd0c1f1d3 | |
parent | c5ff2059f619ac91c14d55412314d1c67de6a593 (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>
-rw-r--r-- | flowtop.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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; |