fxremap.c: warning fixes.

This commit is contained in:
sezero
2018-08-07 12:04:40 +03:00
parent af4ebfce0c
commit 29212e8a14
2 changed files with 7 additions and 3 deletions

View File

@@ -75,7 +75,9 @@ static RangeStruct test_data[6]=
#endif
static RangeStruct map[80];
#if 0 /* not used */
static RangeStruct hole[80];
#endif
static RangeStruct *first_entry;
static RangeStruct *last_entry;
static long entries=0;
@@ -299,7 +301,7 @@ static RangeStruct *TestForConflicts(void)
else {
if (!silent) {
printf("FxRemap: Possible PCI conflict not with Voodoo device\n");
printf("%X (%X) <-> %X:%X (%X)\n",cur->id, cur->address,
printf("%X (%X) <-> %X (%X)\n",cur->id, cur->address,
cur->next->id, cur->next->address);
}
}

View File

@@ -75,7 +75,9 @@ static RangeStruct test_data[6]=
#endif
static RangeStruct map[80];
#if 0 /* not used */
static RangeStruct hole[80];
#endif
static RangeStruct *first_entry;
static RangeStruct *last_entry;
static int entries=0;