From: Al Viro <viro@ftp.linux.org.uk>
Date: Fri, 20 Jul 2007 15:15:28 +0000 (+0100)
Subject: ANSIfy a couple of functions in netfilter
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=8d4bc5b6b0ce030f51a2db836caeaf687b986791;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git

ANSIfy a couple of functions in netfilter

	It's C, not C++...

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
---

diff --git a/net/netfilter/nf_conntrack_helper.c b/net/netfilter/nf_conntrack_helper.c
index b1179dd3d8c3..ca10df40784f 100644
--- a/net/netfilter/nf_conntrack_helper.c
+++ b/net/netfilter/nf_conntrack_helper.c
@@ -194,7 +194,7 @@ static struct nf_ct_ext_type helper_extend __read_mostly = {
 	.id	= NF_CT_EXT_HELPER,
 };
 
-int nf_conntrack_helper_init()
+int nf_conntrack_helper_init(void)
 {
 	int err;
 
@@ -216,7 +216,7 @@ err1:
 	return err;
 }
 
-void nf_conntrack_helper_fini()
+void nf_conntrack_helper_fini(void)
 {
 	nf_ct_extend_unregister(&helper_extend);
 	nf_ct_free_hashtable(nf_ct_helper_hash, nf_ct_helper_vmalloc,