diff options
Diffstat (limited to 'common/nextpnr.cc')
-rw-r--r-- | common/nextpnr.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/nextpnr.cc b/common/nextpnr.cc index b304f4f4..be3bfe14 100644 --- a/common/nextpnr.cc +++ b/common/nextpnr.cc @@ -409,7 +409,7 @@ void Context::check() const void BaseCtx::addClock(IdString net, float freq) { - log_info(" constraining clock net '%s' to %.02f MHz\n", net.c_str(this), freq); + log_info("constraining clock net '%s' to %.02f MHz\n", net.c_str(this), freq); std::unique_ptr<ClockConstraint> cc(new ClockConstraint()); cc->period = getCtx()->getDelayFromNS(1000 / freq); cc->high = getCtx()->getDelayFromNS(500 / freq); |