From 730746664cfe53fab715bdb604ad825ecd26439e Mon Sep 17 00:00:00 2001 From: Maximo Date: Tue, 16 Nov 2021 19:54:19 -0300 Subject: [PATCH] Fixed 'def write' warning message about default net widths. It was informing the wrong dimension --- lef/defWrite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lef/defWrite.c b/lef/defWrite.c index f303846d..1cf57c8c 100644 --- a/lef/defWrite.c +++ b/lef/defWrite.c @@ -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 */