aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorRandy Dunlap <randy.dunlap@oracle.com>2006-12-07 01:17:24 -0800
committerDavid S. Miller <davem@davemloft.net>2006-12-07 01:17:24 -0800
commit272491ef423b6976a230a998b10f46976aa91342 (patch)
tree6f065104e5f4e0bd09b8d167bf8a0b4b9d9f1e0a /net
parent[TG3]: Identify Serdes devices more clearly. (diff)
downloadlinux-dev-272491ef423b6976a230a998b10f46976aa91342.tar.xz
linux-dev-272491ef423b6976a230a998b10f46976aa91342.zip
[NETFILTER]: Fix non-ANSI func. decl.
Fix non-ANSI function declaration: net/netfilter/nf_conntrack_core.c:1096:25: warning: non-ANSI function declaration of function 'nf_conntrack_flush' Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r--net/netfilter/nf_conntrack_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/nf_conntrack_core.c b/net/netfilter/nf_conntrack_core.c
index eaa0f8a1adb6..9b3158ce46e1 100644
--- a/net/netfilter/nf_conntrack_core.c
+++ b/net/netfilter/nf_conntrack_core.c
@@ -1093,7 +1093,7 @@ static void free_conntrack_hash(struct list_head *hash, int vmalloced, int size)
get_order(sizeof(struct list_head) * size));
}
-void nf_conntrack_flush()
+void nf_conntrack_flush(void)
{
nf_ct_iterate_cleanup(kill_all, NULL);
}