devcb: Really fix mistake (nw)

This commit is contained in:
AJR 2018-02-20 19:46:27 -05:00
parent 819199e179
commit f8dec81588

View File

@ -178,7 +178,7 @@ void devcb_read_base::devcb_reset()
devcb_read_base &devcb_read_base::chain_alloc() devcb_read_base &devcb_read_base::chain_alloc()
{ {
// set up the chained callback pointer // set up the chained callback pointer
m_chain.reset(new devcb_read_base(device, defmask, true)); m_chain.reset(new devcb_read_base(m_device, m_defmask, true));
return *m_chain; return *m_chain;
} }