From eb92f5900c1eee1a95131790f40ab2f839e53ffe Mon Sep 17 00:00:00 2001 From: couriersud Date: Thu, 16 Jan 2020 22:43:59 +0100 Subject: [PATCH] netlist: 7493, minor edit. (nw) --- src/lib/netlist/devices/nld_7493.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/netlist/devices/nld_7493.cpp b/src/lib/netlist/devices/nld_7493.cpp index 855bd8a3770..48c2b179073 100644 --- a/src/lib/netlist/devices/nld_7493.cpp +++ b/src/lib/netlist/devices/nld_7493.cpp @@ -131,7 +131,7 @@ namespace netlist NETLIB_HANDLERI(updB) { - auto cnt = (++m_bcd &= 0x07); + const auto cnt(++m_bcd &= 0x07); m_QD.push((cnt >> 2) & 1, out_delay3); m_QC.push((cnt >> 1) & 1, out_delay2); m_QB.push(cnt & 1, out_delay);