mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-11 14:10:34 +00:00
Static'ify a variable.
Submitted by: Matt Emmerton <matt@gsicomp.on.ca>
This commit is contained in:
parent
553c116dad
commit
780c174bca
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=104401
@ -1270,7 +1270,7 @@ ti_newbuf_jumbo(sc, i, m)
|
||||
#define TCP_HDR_LEN (52 + sizeof(struct ether_header))
|
||||
#define UDP_HDR_LEN (28 + sizeof(struct ether_header))
|
||||
#define NFS_HDR_LEN (UDP_HDR_LEN)
|
||||
int HDR_LEN = TCP_HDR_LEN;
|
||||
static int HDR_LEN = TCP_HDR_LEN;
|
||||
|
||||
|
||||
/*
|
||||
|
@ -1270,7 +1270,7 @@ ti_newbuf_jumbo(sc, i, m)
|
||||
#define TCP_HDR_LEN (52 + sizeof(struct ether_header))
|
||||
#define UDP_HDR_LEN (28 + sizeof(struct ether_header))
|
||||
#define NFS_HDR_LEN (UDP_HDR_LEN)
|
||||
int HDR_LEN = TCP_HDR_LEN;
|
||||
static int HDR_LEN = TCP_HDR_LEN;
|
||||
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user