Compiler suggested cleanup
This commit is contained in:
parent
1ab15eb45d
commit
ab8151cdcc
1 changed files with 6 additions and 3 deletions
|
@ -794,7 +794,6 @@ AUTO_CON *autp;
|
||||||
DEVICE *dptr;
|
DEVICE *dptr;
|
||||||
DIB *dibp;
|
DIB *dibp;
|
||||||
uint32 j, k;
|
uint32 j, k;
|
||||||
int v;
|
|
||||||
|
|
||||||
if (done)
|
if (done)
|
||||||
return;
|
return;
|
||||||
|
@ -809,8 +808,12 @@ for (j = 0; (dptr = sim_devices[j]) != NULL; j++) {
|
||||||
ilvl = dibp->vloc / 32;
|
ilvl = dibp->vloc / 32;
|
||||||
ibit = dibp->vloc % 32;
|
ibit = dibp->vloc % 32;
|
||||||
#if (VEC_SET != 0)
|
#if (VEC_SET != 0)
|
||||||
for (v=0; v<MAX(dibp->vnum, 1); v++)
|
if (1) {
|
||||||
int_vec_set[ilvl][ibit+v] = VEC_SET;
|
int v;
|
||||||
|
|
||||||
|
for (v=0; v<MAX(dibp->vnum, 1); v++)
|
||||||
|
int_vec_set[ilvl][ibit+v] = VEC_SET;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue