summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/prg/nltool.cpp
diff options
context:
space:
mode:
author couriersud <couriersud@gmx.org>2020-04-26 17:48:38 +0200
committer couriersud <couriersud@gmx.org>2020-04-28 21:08:02 +0200
commit420f4909bef170af33e99c881f9e6e807bea8aaf (patch)
tree920910bac5c2dc744eb637633dc0e3daba1657a3 /src/lib/netlist/prg/nltool.cpp
parent4c38dd6f929eca2affa88b1f8ffb95c0fe81879f (diff)
netlist: Fix clang-tidy warnings. (nw)
Diffstat (limited to 'src/lib/netlist/prg/nltool.cpp')
-rw-r--r--src/lib/netlist/prg/nltool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/netlist/prg/nltool.cpp b/src/lib/netlist/prg/nltool.cpp
index b9225c3b640..78ab39463df 100644
--- a/src/lib/netlist/prg/nltool.cpp
+++ b/src/lib/netlist/prg/nltool.cpp
@@ -506,7 +506,7 @@ void tool_app_t::run()
auto emutime(t.as_seconds<nl_fptype>());
pout("{1:f} seconds emulation took {2:f} real time ==> {3:5.2f}%\n",
(ttr - nlstart).as_fp<nl_fptype>(), emutime,
- (ttr - nlstart).as_fp<nl_fptype>() / emutime * netlist::nlconst::magic(100.0));
+ (ttr - nlstart).as_fp<nl_fptype>() / emutime * netlist::nlconst::hundred());
}
void tool_app_t::validate()