aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2018-08-05 16:13:49 +0200
committerMiodrag Milanovic <mmicko@gmail.com>2018-08-05 16:13:49 +0200
commit7794bbfb3fbd488ee84231642c79ebbfa8eb8bb3 (patch)
treecc775b2a5ac2508a7cefed4b6fff49ed85b5c4a8
parent3bb9a7df01a03a31be87da719e0ee4bd4c38d5fd (diff)
downloadnextpnr-7794bbfb3fbd488ee84231642c79ebbfa8eb8bb3.tar.gz
nextpnr-7794bbfb3fbd488ee84231642c79ebbfa8eb8bb3.tar.bz2
nextpnr-7794bbfb3fbd488ee84231642c79ebbfa8eb8bb3.zip
Fix message for pcf loading
-rw-r--r--ice40/pcf.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ice40/pcf.cc b/ice40/pcf.cc
index ac1c8598..410fa1c9 100644
--- a/ice40/pcf.cc
+++ b/ice40/pcf.cc
@@ -31,7 +31,7 @@ bool apply_pcf(Context *ctx, std::istream &in)
{
try {
if (!in)
- log_error("failed to open PCF file");
+ log_error("failed to open PCF file\n");
std::string line;
while (std::getline(in, line)) {
size_t cstart = line.find("#");