diff options
Diffstat (limited to 'src/devices/machine/linflash.cpp')
-rw-r--r-- | src/devices/machine/linflash.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/linflash.cpp b/src/devices/machine/linflash.cpp index 52b5c0204a8..efc9583981b 100644 --- a/src/devices/machine/linflash.cpp +++ b/src/devices/machine/linflash.cpp @@ -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 ) |