diff options
Diffstat (limited to 'src/devices/machine/68340ser.cpp')
| -rw-r--r-- | src/devices/machine/68340ser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/68340ser.cpp b/src/devices/machine/68340ser.cpp index 9e4118ec92e..230b6c7a71b 100644 --- a/src/devices/machine/68340ser.cpp +++ b/src/devices/machine/68340ser.cpp @@ -10,7 +10,7 @@ READ32_MEMBER( m68340cpu_device::m68340_internal_serial_r ) { m68340cpu_device *m68k = this; m68340_serial* serial = m68k->m68340SERIAL; - assert(serial != NULL); + assert(serial != nullptr); if (serial) { @@ -25,7 +25,7 @@ WRITE32_MEMBER( m68340cpu_device::m68340_internal_serial_w ) { m68340cpu_device *m68k = this; m68340_serial* serial = m68k->m68340SERIAL; - assert(serial != NULL); + assert(serial != nullptr); if (serial) { |
