wmifinfo: Fix -Wpedantic compiler warning.
This commit is contained in:
parent
2c511c999b
commit
e6cd763cba
1 changed files with 6 additions and 5 deletions
|
@ -656,6 +656,12 @@ void getifnames(void)
|
||||||
int pifaces;
|
int pifaces;
|
||||||
int i,j;
|
int i,j;
|
||||||
int isnew;
|
int isnew;
|
||||||
|
#ifdef linux
|
||||||
|
FILE *f;
|
||||||
|
char buf[128];
|
||||||
|
char *p1, *p2;
|
||||||
|
int ifcount;
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copy list of interface names and clean the old list
|
* Copy list of interface names and clean the old list
|
||||||
|
@ -666,11 +672,6 @@ void getifnames(void)
|
||||||
ifaces = 0;
|
ifaces = 0;
|
||||||
|
|
||||||
#ifdef linux
|
#ifdef linux
|
||||||
FILE *f;
|
|
||||||
char buf[128];
|
|
||||||
char *p1, *p2;
|
|
||||||
int ifcount;
|
|
||||||
|
|
||||||
f = fopen("/proc/net/dev", "r");
|
f = fopen("/proc/net/dev", "r");
|
||||||
|
|
||||||
if(f == NULL) {
|
if(f == NULL) {
|
||||||
|
|
Loading…
Reference in a new issue