Skip to content

Commit 39be3d3

Browse files
committed
Fixed Tcl lint issue
Signed-off-by: Jaehyun Kim <[email protected]>
1 parent 48c334b commit 39be3d3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/rsz/src/Resizer.tcl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ proc parse_buffer_cell { keys_var required } {
2828

2929
# required argument is missing?
3030
if { $buffer_cell == "NULL" && $required } {
31-
utl::error RSZ 212 "-buffer_cell is required for buffer insertion."
31+
utl::error RSZ 212 "-buffer_cell is required for buffer insertion."
3232
}
3333

3434
return $buffer_cell
@@ -38,7 +38,6 @@ proc parse_buffer_cell { keys_var required } {
3838
}
3939

4040

41-
4241
# Units are from OpenSTA (ie Liberty file or set_cmd_units).
4342
sta::define_cmd_args "set_layer_rc" { [-layer layer]\
4443
[-via via_layer]\
@@ -490,7 +489,7 @@ proc buffer_ports { args } {
490489
sta::check_argc_eq0 "buffer_ports" $args
491490

492491
rsz::set_max_utilization [rsz::parse_max_util keys]
493-
set buffer_cell [rsz::parse_buffer_cell keys 0] ; # 0: optional argument
492+
set buffer_cell [rsz::parse_buffer_cell keys 0] ;# 0: optional argument
494493

495494
if { $buffer_inputs } {
496495
rsz::buffer_inputs $buffer_cell $verbose

0 commit comments

Comments
 (0)