aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/fstdata.cc
diff options
context:
space:
mode:
authorClaire Xen <claire@clairexen.net>2022-02-22 16:22:06 +0100
committerGitHub <noreply@github.com>2022-02-22 16:22:06 +0100
commita41c1df76f724476136e2668405ccae05494ebb8 (patch)
tree097548d79dd1c28ebd782e119aad869996b4c316 /kernel/fstdata.cc
parentac294ed419286a84117e79e4ccd78a19458ae614 (diff)
parent1aa9ad25d0c062e2202b81de4193b161984e83fb (diff)
downloadyosys-a41c1df76f724476136e2668405ccae05494ebb8.tar.gz
yosys-a41c1df76f724476136e2668405ccae05494ebb8.tar.bz2
yosys-a41c1df76f724476136e2668405ccae05494ebb8.zip
Merge pull request #3211 from YosysHQ/micko/witness
Add support for AIGER witness files in "sim" command
Diffstat (limited to 'kernel/fstdata.cc')
-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 = "";