Merge pull request #285 from whitequark/fix-missing-newline

Fix missing \n in log statement
This commit is contained in:
David Shah 2019-06-04 15:29:11 +01:00 committed by GitHub
commit 206761b415
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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