mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
netinet: Use proper prototype for SYSINIT functions
MFC after: 1 week (cherry picked from commit 6613b6ad1ecc5384c119018b9b27c18bd7516e3f)
This commit is contained in:
parent
0270d3dfa7
commit
5b41be5cc0
2 changed files with 2 additions and 2 deletions
|
|
@ -271,7 +271,7 @@ cc_check_default(struct cc_algo *remove_cc)
|
|||
* Initialise CC subsystem on system boot.
|
||||
*/
|
||||
static void
|
||||
cc_init(void)
|
||||
cc_init(void *dummy __unused)
|
||||
{
|
||||
CC_LIST_LOCK_INIT();
|
||||
STAILQ_INIT(&cc_list);
|
||||
|
|
|
|||
|
|
@ -767,7 +767,7 @@ struct fib_lookup_module flm_radix4 = {
|
|||
};
|
||||
|
||||
static void
|
||||
fib4_algo_init(void)
|
||||
fib4_algo_init(void *dummy __unused)
|
||||
{
|
||||
|
||||
fib_module_register(&flm_bsearch4);
|
||||
|
|
|
|||
Loading…
Reference in a new issue