summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/prg/nltool.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/netlist/prg/nltool.cpp')
-rw-r--r--src/lib/netlist/prg/nltool.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/netlist/prg/nltool.cpp b/src/lib/netlist/prg/nltool.cpp
index a4946c00d3e..7b18b00d77d 100644
--- a/src/lib/netlist/prg/nltool.cpp
+++ b/src/lib/netlist/prg/nltool.cpp
@@ -439,7 +439,7 @@ void tool_app_t::run_with_progress(netlist_tool_t &nt, netlist::netlist_time_ext
else
{
nt.exec().process_queue(next_sec - now);
- pout("progress {1:4}s : {2}\r", elapsed_sec, pstring(elapsed_sec, '*'));
+ pout("progress {1:4}s : {2}\r", elapsed_sec, pstring(gsl::narrow_cast<std::size_t>(elapsed_sec), '*'));
pout.flush();
}
now = nt.exec().time();
@@ -1276,7 +1276,7 @@ int tool_app_t::execute()
convert();
else if (cmd == "tests")
{
- return RUN_ALL_TESTS();
+ return PRUN_ALL_TESTS();
}
else
{