aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2022-02-18 15:06:49 +0100
committerMiodrag Milanovic <mmicko@gmail.com>2022-02-18 15:06:49 +0100
commit5f918803de539a2ef6fbfe80de4acb379c20f472 (patch)
tree105425676b85676f4481ee47a5498c52ace7d418 /kernel
parent41754b4207f9c695049757955d85c6bbadbe8ac3 (diff)
downloadyosys-5f918803de539a2ef6fbfe80de4acb379c20f472.tar.gz
yosys-5f918803de539a2ef6fbfe80de4acb379c20f472.tar.bz2
yosys-5f918803de539a2ef6fbfe80de4acb379c20f472.zip
Changed error message
Diffstat (limited to 'kernel')
-rw-r--r--kernel/fstdata.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/fstdata.cc b/kernel/fstdata.cc
index 1386a3300..2e1000178 100644
--- a/kernel/fstdata.cc
+++ b/kernel/fstdata.cc
@@ -27,7 +27,7 @@ FstData::FstData(std::string filename) : ctx(nullptr)
const std::vector<std::string> g_units = { "s", "ms", "us", "ns", "ps", "fs", "as", "zs" };
ctx = (fstReaderContext *)fstReaderOpen(filename.c_str());
if (!ctx)
- log_error("Error opening '%s'\n", filename.c_str());
+ log_error("Error opening '%s' as FST file\n", filename.c_str());
int scale = (int)fstReaderGetTimescale(ctx);
timescale = pow(10.0, scale);
timescale_str = "";