fixed syntax error in dot file created by "show" command

This commit is contained in:
Clifford Wolf 2014-05-10 16:22:56 +02:00
parent 973959c7ea
commit f69b5800c9
1 changed files with 1 additions and 1 deletions

View File

@ -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, "%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, ShowWorker(FILE *f, RTLIL::Design *design, std::vector<RTLIL::Design*> &libs, uint32_t colorSeed,