3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-05-21 17:39:41 +00:00

Fixed log_id instances used with fprintf

This commit is contained in:
Miodrag Milanovic 2026-05-14 11:28:16 +02:00
parent e41b969da2
commit c6f53aec5f
2 changed files with 2 additions and 2 deletions

View file

@ -718,7 +718,7 @@ struct VizWorker
void write_dot(FILE *f)
{
fprintf(f, "digraph \"%s\" {\n", module);
fprintf(f, "digraph \"%s\" {\n", module->name.unescape().c_str());
fprintf(f, " rankdir = LR;\n");
dict<GraphNode*, std::vector<std::vector<std::string>>> extra_lines;