From: Clifford Wolf Date: Sat, 10 May 2014 14:22:56 +0000 (+0200) Subject: fixed syntax error in dot file created by "show" command X-Git-Tag: yosys-0.3.0~19 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f69b5800c940557cafd20598b03d774dd6cf6f8d;p=yosys.git fixed syntax error in dot file created by "show" command --- diff --git a/passes/cmds/show.cc b/passes/cmds/show.cc index bf37e5dae..92fc5bd55 100644 --- a/passes/cmds/show.cc +++ b/passes/cmds/show.cc @@ -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 &libs, uint32_t colorSeed,