Skip to content

Commit 36e6d61

Browse files
committed
odb: fix messages ids
Signed-off-by: Eder Monteiro <emrmonteiro@precisioninno.com>
1 parent 6e611cb commit 36e6d61

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/odb/src/db/dbBlock.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1651,31 +1651,31 @@ void dbBlock::setBTermTopLayerGrid(
16511651
if (top_layer_grid.x_step <= 0) {
16521652
logger->error(
16531653
utl::ODB,
1654-
400,
1654+
500,
16551655
"The x_step for the top layer grid must be greater than zero.");
16561656
}
16571657
if (top_layer_grid.y_step <= 0) {
16581658
logger->error(
16591659
utl::ODB,
1660-
401,
1660+
501,
16611661
"The y_step for the top layer grid must be greater than zero.");
16621662
}
16631663
if (top_layer_grid.pin_width <= 0) {
16641664
logger->error(
16651665
utl::ODB,
1666-
402,
1666+
502,
16671667
"The pin width for the top layer grid must be greater than zero.");
16681668
}
16691669
if (top_layer_grid.pin_height <= 0) {
16701670
logger->error(
16711671
utl::ODB,
1672-
403,
1672+
503,
16731673
"The pin height for the top layer grid must be greater than zero.");
16741674
}
16751675
if (top_layer_grid.keepout <= 0) {
16761676
logger->error(
16771677
utl::ODB,
1678-
404,
1678+
504,
16791679
"The pin keepout for the top layer grid must be greater than zero.");
16801680
}
16811681

0 commit comments

Comments
 (0)