Skip to content

Commit

Permalink
ANSIfy a couple of functions in netfilter
Browse files Browse the repository at this point in the history
	It's C, not C++...

Signed-off-by: Al Viro <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Al Viro authored and Linus Torvalds committed Jul 20, 2007
1 parent 6d14bfe commit 8d4bc5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions net/netfilter/nf_conntrack_helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -216,7 +216,7 @@ int nf_conntrack_helper_init()
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,
Expand Down

0 comments on commit 8d4bc5b

Please sign in to comment.