diff options
Diffstat (limited to 'kernel/fstdata.cc')
-rw-r--r-- | kernel/fstdata.cc | 2 |
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 = ""; |