1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-04-17 08:41:38 +00:00

Fix warning

This commit is contained in:
Miodrag Milanovic
2023-04-20 13:40:27 +02:00
committed by myrtle
parent 8c19e6f83a
commit d7c2eb3fae

View File

@@ -447,7 +447,7 @@ int main(int argc, char **argv)
fprintf(fileOut, "%s\n", s.c_str());
fprintf(fileOut, "const char %s[%d] =\n", streams[0].name.c_str(), int(data.size()) + 1);
fprintf(fileOut, "#embed_str \"%s\"\n", boost::filesystem::basename(files.at(2)).c_str());
fprintf(fileOut, "#embed_str \"%s\"\n", boost::filesystem::path(files.at(2)).stem().c_str());
fprintf(fileOut, ";\n");
for (auto &s : postText)