Fixed 'def write' warning message about default net widths. It was informing the wrong dimension
This commit is contained in:
parent
7c13915205
commit
730746664c
|
|
@ -950,7 +950,7 @@ defNetGeometryFunc(tile, plane, defdata)
|
|||
{
|
||||
/* Diagnostic */
|
||||
TxPrintf("Net has width %d, default width is %d\n",
|
||||
(h > w) ? h : w, routeWidth);
|
||||
(h < w) ? h : w, routeWidth);
|
||||
}
|
||||
|
||||
/* Find the route orientation and centerline endpoint coordinates */
|
||||
|
|
|
|||
Loading…
Reference in New Issue