From 4016dec51f15b75caf7ebcbbca01baab016c08ba Mon Sep 17 00:00:00 2001 From: James Cherry Date: Mon, 16 Aug 2021 12:17:48 -0700 Subject: [PATCH] write_sdc set_logic_zero typo Signed-off-by: James Cherry --- sdc/WriteSdc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdc/WriteSdc.cc b/sdc/WriteSdc.cc index 7a1b302e..44528861 100644 --- a/sdc/WriteSdc.cc +++ b/sdc/WriteSdc.cc @@ -1899,7 +1899,7 @@ WriteSdc::setConstantCmd(Pin *pin) const sdc_->logicValue(pin, value, exists); switch (value) { case LogicValue::zero: - return "set_LogicValue::zero"; + return "set_logic_zero"; case LogicValue::one: return "set_logic_one"; case LogicValue::unknown: