From: Miodrag Milanovic Date: Fri, 18 Feb 2022 14:06:49 +0000 (+0100) Subject: Changed error message X-Git-Tag: yosys-0.15~12^2~1 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5f918803de539a2ef6fbfe80de4acb379c20f472;p=yosys.git Changed error message --- 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 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 = "";