Changed error message
authorMiodrag Milanovic <mmicko@gmail.com>
Fri, 18 Feb 2022 14:06:49 +0000 (15:06 +0100)
committerMiodrag Milanovic <mmicko@gmail.com>
Fri, 18 Feb 2022 14:06:49 +0000 (15:06 +0100)
kernel/fstdata.cc

index 1386a33007f616d5f25f6151ac449548b729749b..2e1000178daaff308f597198cc3295834188a8cb 100644 (file)
@@ -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 = "";