diff --git a/drc/DRCsubcell.c b/drc/DRCsubcell.c index 05158dff..f7f8c159 100644 --- a/drc/DRCsubcell.c +++ b/drc/DRCsubcell.c @@ -91,7 +91,6 @@ drcFindOtherCells(tile, area) Tile *tile; /* Tile in subcell plane. */ Rect *area; /* Area in which to include interactions. */ { - Rect r; CellUse *use; CellTileBody *ctbptr = (CellTileBody *) tile->ti_body; @@ -104,7 +103,7 @@ drcFindOtherCells(tile, area) ctbptr = ctbptr->ctb_next) { use = ctbptr->ctb_use; - GeoInclude(&use->cu_bbox, &r); + GeoInclude(&use->cu_bbox, area); } return 0; }