diff options
author | 2019-10-06 23:50:13 +0200 | |
---|---|---|
committer | 2019-10-06 23:50:13 +0200 | |
commit | 545f8069ef6d0095464479f4f90d3c7240d96a37 (patch) | |
tree | e6881a9ea485e5a38b13f143634831ddad2b83d0 /src/lib/netlist/prg/nltool.cpp | |
parent | 38fd19fe301c3be1cb7942ca4272687928ddf4e6 (diff) |
netlist: maintenance and lint fixes. (nw)
Diffstat (limited to 'src/lib/netlist/prg/nltool.cpp')
-rw-r--r-- | src/lib/netlist/prg/nltool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/netlist/prg/nltool.cpp b/src/lib/netlist/prg/nltool.cpp index 26c06489fbf..a5795108753 100644 --- a/src/lib/netlist/prg/nltool.cpp +++ b/src/lib/netlist/prg/nltool.cpp @@ -622,7 +622,7 @@ void tool_app_t::create_header() { last_source = e->sourcefile(); pout("{1}\n", plib::rpad(pstring("// "), pstring("-"), opt_linewidth())); - pout("{1}{2}\n", pstring("// Source: "), plib::replace_all(e->sourcefile(), "../", "")); + pout("{1}{2}\n", "// Source: ", plib::replace_all(e->sourcefile(), "../", "")); pout("{1}\n", plib::rpad(pstring("// "), pstring("-"), opt_linewidth())); } header_entry(e.get()); |