Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1614682 > unrolled thread
| Started by | Arushi Singhal <arushisinghal19971997@gmail.com> |
|---|---|
| First post | 2017-04-02 11:30 +0200 |
| Last post | 2017-04-02 11:30 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
[PATCH] iptables: iptables: Remove exceptional & on function name Arushi Singhal <arushisinghal19971997@gmail.com> - 2017-04-02 11:30 +0200
| From | Arushi Singhal <arushisinghal19971997@gmail.com> |
|---|---|
| Date | 2017-04-02 11:30 +0200 |
| Subject | [PATCH] iptables: iptables: Remove exceptional & on function name |
| Message-ID | <trJZD-71T-11@gated-at.bofh.it> |
Remove & from function pointers to conform to the style found elsewhere
in the file. Done using the following semantic patch
// <smpl>
@r@
identifier f;
@@
f(...) { ... }
@@
identifier r.f;
@@
- &f
+ f
// </smpl>
Signed-off-by: Arushi Singhal <arushisinghal19971997@gmail.com>
---
iptables/ip6tables-save.c | 2 +-
iptables/iptables-save.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/iptables/ip6tables-save.c b/iptables/ip6tables-save.c
index 053413a..683b143 100644
--- a/iptables/ip6tables-save.c
+++ b/iptables/ip6tables-save.c
@@ -66,7 +66,7 @@ static int do_output(const char *tablename)
const char *chain = NULL;
if (!tablename)
- return for_each_table(&do_output);
+ return for_each_table(do_output);
h = ip6tc_init(tablename);
if (h == NULL) {
diff --git a/iptables/iptables-save.c b/iptables/iptables-save.c
index e8ae9c6..2b45720 100644
--- a/iptables/iptables-save.c
+++ b/iptables/iptables-save.c
@@ -64,7 +64,7 @@ static int do_output(const char *tablename)
const char *chain = NULL;
if (!tablename)
- return for_each_table(&do_output);
+ return for_each_table(do_output);
h = iptc_init(tablename);
if (h == NULL) {
--
2.11.0
Back to top | Article view | linux.kernel
csiph-web