aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2019-06-04 15:29:11 +0100
committerGitHub <noreply@github.com>2019-06-04 15:29:11 +0100
commit206761b41589f218e7c3f1ebc360183f3d8c1c79 (patch)
tree9fe0ba20803114f726006911fccacfe49c6cf891
parent150004e393d325aca75577360bdd7b4aba341070 (diff)
parentf3339961feea47bce48e400c0eda8468b2e0356e (diff)
downloadnextpnr-206761b41589f218e7c3f1ebc360183f3d8c1c79.tar.gz
nextpnr-206761b41589f218e7c3f1ebc360183f3d8c1c79.tar.bz2
nextpnr-206761b41589f218e7c3f1ebc360183f3d8c1c79.zip
Merge pull request #285 from whitequark/fix-missing-newline
Fix missing \n in log statement
-rw-r--r--common/timing.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/timing.cc b/common/timing.cc
index 2ce9eea3..09d15758 100644
--- a/common/timing.cc
+++ b/common/timing.cc
@@ -752,7 +752,7 @@ void timing_analysis(Context *ctx, bool print_histogram, bool print_fmax, bool p
}
if (clock_reports.empty()) {
- log_warning("No clocks found in design");
+ log_warning("No clocks found in design\n");
}
std::sort(xclock_paths.begin(), xclock_paths.end(), [ctx](const ClockPair &a, const ClockPair &b) {