mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Static pointers need not be initialized.
MFC after: 4 weeks
This commit is contained in:
parent
ff34412a50
commit
4bb37cd3af
1 changed files with 3 additions and 3 deletions
|
|
@ -64,9 +64,9 @@ ipfrwlock_t ipf_global, ipf_mutex, ipf_ipidfrag, ipf_frcache, ipf_tokens;
|
|||
int (*ipf_checkp) __P((struct ip *, int, void *, int, mb_t **));
|
||||
|
||||
#ifdef IPFILTER_LKM
|
||||
static int *ipff_addr = 0;
|
||||
static int *ipff_addr;
|
||||
static int ipff_value;
|
||||
static __psunsigned_t *ipfk_addr = 0;
|
||||
static __psunsigned_t *ipfk_addr;
|
||||
static __psunsigned_t ipfk_code[4];
|
||||
#endif
|
||||
static void nifattach();
|
||||
|
|
@ -85,7 +85,7 @@ typedef struct nif {
|
|||
int nf_unit;
|
||||
} nif_t;
|
||||
|
||||
static nif_t *nif_head = 0;
|
||||
static nif_t *nif_head;
|
||||
static int nif_interfaces = 0;
|
||||
extern int in_interfaces;
|
||||
#if IRIX >= 60500
|
||||
|
|
|
|||
Loading…
Reference in a new issue