summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/nl_parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/netlist/nl_parser.cpp')
-rw-r--r--src/lib/netlist/nl_parser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/netlist/nl_parser.cpp b/src/lib/netlist/nl_parser.cpp
index d5823d2e930..32a5c542a16 100644
--- a/src/lib/netlist/nl_parser.cpp
+++ b/src/lib/netlist/nl_parser.cpp
@@ -120,7 +120,7 @@ bool parser_t::parse(const token_store &tokstor, const pstring &nlname)
if (token.is(m_tok_NETLIST_START) && (name.str() == nlname || nlname.empty()))
{
require_token(m_tok_paren_right);
- parse_netlist(name.str());
+ parse_netlist();
return true;
}
if (token.is(m_tok_TRUTHTABLE_START) && name.str() == nlname)
@@ -165,7 +165,7 @@ bool parser_t::parse(const token_store &tokstor, const pstring &nlname)
}
}
-void parser_t::parse_netlist(const pstring &nlname)
+void parser_t::parse_netlist()
{
while (true)
{