mirror of https://github.com/YosysHQ/yosys.git
fixed syntax error in dot file created by "show" command
This commit is contained in:
parent
973959c7ea
commit
f69b5800c9
|
@ -487,7 +487,7 @@ struct ShowWorker
|
|||
fprintf(f, "%s:e -> %s:w [%s, %s];\n", it.first.c_str(), it2.c_str(), nextColor(it.second.color).c_str(), widthLabel(it.second.bits).c_str());
|
||||
}
|
||||
|
||||
fprintf(f, "};\n");
|
||||
fprintf(f, "}\n");
|
||||
}
|
||||
|
||||
ShowWorker(FILE *f, RTLIL::Design *design, std::vector<RTLIL::Design*> &libs, uint32_t colorSeed,
|
||||
|
|
Loading…
Reference in New Issue