mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
Make global variables static
Remove WARNS from Makefile
This commit is contained in:
parent
66a86d242f
commit
1fbc22f5ed
2 changed files with 3 additions and 5 deletions
|
|
@ -3,6 +3,4 @@
|
|||
|
||||
PROG= mkstr
|
||||
|
||||
WARNS?= 2
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
|
|
|||
|
|
@ -76,8 +76,8 @@ __FBSDID("$FreeBSD$");
|
|||
* existing error message file for recompilation of single routines.
|
||||
*/
|
||||
|
||||
FILE *mesgread, *mesgwrite;
|
||||
char name[100], *np;
|
||||
static FILE *mesgread, *mesgwrite;
|
||||
static char name[100], *np;
|
||||
|
||||
void copystr(void);
|
||||
int fgetNUL(char *, int, FILE *);
|
||||
|
|
@ -267,7 +267,7 @@ inithash(void)
|
|||
|
||||
#define NBUCKETS 511
|
||||
|
||||
struct hash {
|
||||
static struct hash {
|
||||
long hval;
|
||||
unsigned hpt;
|
||||
struct hash *hnext;
|
||||
|
|
|
|||
Loading…
Reference in a new issue