summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/linflash.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/linflash.cpp')
-rw-r--r--src/devices/machine/linflash.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/linflash.cpp b/src/devices/machine/linflash.cpp
index fe72efa921d..efc9583981b 100644
--- a/src/devices/machine/linflash.cpp
+++ b/src/devices/machine/linflash.cpp
@@ -5,7 +5,7 @@
linear_flash_pccard_device::linear_flash_pccard_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),
device_memory_interface(mconfig, *this),
- device_slot_card_interface(mconfig, *this)
+ device_slot_card_interface(mconfig, *this), m_space(nullptr)
{
}
@@ -16,7 +16,7 @@ void linear_flash_pccard_device::device_start()
const address_space_config *linear_flash_pccard_device::memory_space_config( address_spacenum spacenum ) const
{
- return ( spacenum == AS_0 ) ? &m_space_config : NULL;
+ return ( spacenum == AS_0 ) ? &m_space_config : nullptr;
}
READ16_MEMBER( linear_flash_pccard_device::read_memory )