Fix compiler warning in drcMaskSpacing()
why should be an int.
This commit is contained in:
parent
eedc0c89a1
commit
e4e115b23e
|
|
@ -1968,7 +1968,8 @@ drcMaskSpacing(set1, set2, pmask1, pmask2, wwidth, distance, adjacency,
|
||||||
TileTypeBitMask *set1, *set2;
|
TileTypeBitMask *set1, *set2;
|
||||||
PlaneMask pmask1, pmask2;
|
PlaneMask pmask1, pmask2;
|
||||||
int wwidth, distance;
|
int wwidth, distance;
|
||||||
char *adjacency, *why;
|
char *adjacency;
|
||||||
|
int why;
|
||||||
bool widerule;
|
bool widerule;
|
||||||
int runlength;
|
int runlength;
|
||||||
bool multiplane;
|
bool multiplane;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue