From be17067e1338d67aed361bf7a451b6cf145fa202 Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Thu, 22 Oct 2020 10:44:59 -0400 Subject: [PATCH] Corrected a problem with argument passing in the DRC subcell copying up of DRC errors into the parent cell. --- VERSION | 2 +- drc/DRCsubcell.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/VERSION b/VERSION index 2e03c5a9..fbf1f18d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.3.71 +8.3.72 diff --git a/drc/DRCsubcell.c b/drc/DRCsubcell.c index 0a2bd477..9ecdb353 100644 --- a/drc/DRCsubcell.c +++ b/drc/DRCsubcell.c @@ -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); } /*