Corrected a problem with argument passing in the DRC subcell
copying up of DRC errors into the parent cell.
This commit is contained in:
parent
d1793ce19f
commit
be17067e13
|
|
@ -164,9 +164,9 @@ drcSubCopyErrors(tile, cxp)
|
|||
*/
|
||||
|
||||
int
|
||||
drcSubCopyFunc(scx, fp)
|
||||
drcSubCopyFunc(scx, cdarg)
|
||||
SearchContext *scx;
|
||||
TreeFilter *fp;
|
||||
ClientData cdarg;
|
||||
{
|
||||
TileTypeBitMask drcMask;
|
||||
|
||||
|
|
@ -175,7 +175,7 @@ drcSubCopyFunc(scx, fp)
|
|||
TTMaskSetType(&drcMask, TT_ERROR_P);
|
||||
|
||||
/* Use DBNoTreeSrTiles() because we want to search only one level down */
|
||||
return DBNoTreeSrTiles(scx, &drcMask, 0, drcSubCopyErrors, fp->tf_arg);
|
||||
return DBNoTreeSrTiles(scx, &drcMask, 0, drcSubCopyErrors, cdarg);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in New Issue