1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-04-25 03:44:35 +00:00

Fix missing \n in log statement.

This commit is contained in:
whitequark
2019-06-04 13:15:23 +00:00
parent 150004e393
commit f3339961fe

View File

@@ -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) {