From: Miodrag Milanovic Date: Tue, 16 Jul 2019 09:03:30 +0000 (+0200) Subject: Fix typo, double "of" X-Git-Tag: working-ls180~1192^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6cce679b35d7eab2b620eed7b8b697d10974307a;p=yosys.git Fix typo, double "of" --- diff --git a/frontends/liberty/liberty.cc b/frontends/liberty/liberty.cc index 6e3cffaca..14de95e07 100644 --- a/frontends/liberty/liberty.cc +++ b/frontends/liberty/liberty.cc @@ -551,7 +551,7 @@ struct LibertyFrontend : public Frontend { if (design->has(cell_name)) { Module *existing_mod = design->module(cell_name); if (!flag_nooverwrite && !flag_overwrite && !existing_mod->get_bool_attribute("\\blackbox")) { - log_error("Re-definition of of cell/module %s!\n", log_id(cell_name)); + log_error("Re-definition of cell/module %s!\n", log_id(cell_name)); } else if (flag_nooverwrite) { log("Ignoring re-definition of module %s.\n", log_id(cell_name)); continue;