1
0
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:
Alfred Perlstein 2002-10-03 06:44:01 +00:00
parent 553c116dad
commit 780c174bca
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=104401
2 changed files with 2 additions and 2 deletions

View File

@ -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;
/*

View File

@ -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;
/*