Added missing newline to some error messages
authorClifford Wolf <clifford@clifford.at>
Thu, 23 May 2013 09:19:33 +0000 (11:19 +0200)
committerClifford Wolf <clifford@clifford.at>
Thu, 23 May 2013 09:19:33 +0000 (11:19 +0200)
passes/techmap/techmap.cc

index 732bd5cb9f84fdba511158942bfa858ba8dd9b67..4e1afe92ac276861d106e2a299a75c8621f59ccb 100644 (file)
@@ -73,10 +73,10 @@ static void techmap_module_worker(RTLIL::Design *design, RTLIL::Module *module,
        log("Mapping `%s.%s' using `%s'.\n", RTLIL::id2cstr(module->name), RTLIL::id2cstr(cell->name), RTLIL::id2cstr(tpl->name));
 
        if (tpl->memories.size() != 0)
-               log_error("Technology map yielded memories -> this is not supported.");
+               log_error("Technology map yielded memories -> this is not supported.\n");
 
        if (tpl->processes.size() != 0)
-               log_error("Technology map yielded processes -> this is not supported.");
+               log_error("Technology map yielded processes -> this is not supported.\n");
 
        for (auto &it : tpl->wires) {
                RTLIL::Wire *w = new RTLIL::Wire(*it.second);