Fixed 'def write' warning message about default net widths. It was informing the wrong dimension

This commit is contained in:
Maximo 2021-11-16 19:54:19 -03:00 committed by Tim Edwards
parent 7c13915205
commit 730746664c
1 changed files with 1 additions and 1 deletions

View File

@ -950,7 +950,7 @@ defNetGeometryFunc(tile, plane, defdata)
{ {
/* Diagnostic */ /* Diagnostic */
TxPrintf("Net has width %d, default width is %d\n", 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 */ /* Find the route orientation and centerline endpoint coordinates */