Corrected a problem with argument passing in the DRC subcell

copying up of DRC errors into the parent cell.
This commit is contained in:
Tim Edwards 2020-10-22 10:44:59 -04:00
parent d1793ce19f
commit be17067e13
2 changed files with 4 additions and 4 deletions

View File

@ -1 +1 @@
8.3.71 8.3.72

View File

@ -164,9 +164,9 @@ drcSubCopyErrors(tile, cxp)
*/ */
int int
drcSubCopyFunc(scx, fp) drcSubCopyFunc(scx, cdarg)
SearchContext *scx; SearchContext *scx;
TreeFilter *fp; ClientData cdarg;
{ {
TileTypeBitMask drcMask; TileTypeBitMask drcMask;
@ -175,7 +175,7 @@ drcSubCopyFunc(scx, fp)
TTMaskSetType(&drcMask, TT_ERROR_P); TTMaskSetType(&drcMask, TT_ERROR_P);
/* Use DBNoTreeSrTiles() because we want to search only one level down */ /* 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);
} }
/* /*