1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-04-12 07:15:24 +00:00

Fix message for pcf loading

This commit is contained in:
Miodrag Milanovic
2018-08-05 16:13:49 +02:00
parent 3bb9a7df01
commit 7794bbfb3f

View File

@@ -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("#");