sta_error

This commit is contained in:
James Cherry 2021-01-19 11:16:56 -07:00
parent e6f2fe16d6
commit d418537bcc
1 changed files with 2 additions and 2 deletions

View File

@ -261,7 +261,7 @@ proc sta_warn { msg_id msg } {
}
}
proc sta_error { id msg } {
proc sta_error { msg_id msg } {
variable sdc_file
variable sdc_line
if { [info exists sdc_file] } {
@ -275,7 +275,7 @@ proc sta_warn_error { msg_id warn_error msg } {
if { $warn_error == "warn" } {
sta_warn $msg_id $msg
} else {
sta_error $$msg_id $msg
sta_error $msg_id $msg
}
}