summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/smartmed.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/smartmed.c')
-rw-r--r--src/mess/machine/smartmed.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/machine/smartmed.c b/src/mess/machine/smartmed.c
index fc5b38e8712..fc5fe8a22e3 100644
--- a/src/mess/machine/smartmed.c
+++ b/src/mess/machine/smartmed.c
@@ -76,12 +76,12 @@ const device_type NAND = &device_creator<nand_device>;
nand_device::nand_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, NAND, "NAND Flash Memory", tag, owner, clock, "nand", __FILE__),
- m_write_rnb(*this)
+ m_write_rnb(*this)
{
}
nand_device::nand_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source)
: device_t(mconfig, type, name, tag, owner, clock, shortname, source),
- m_write_rnb(*this)
+ m_write_rnb(*this)
{
}