summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/latch.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/latch.cpp')
-rw-r--r--src/devices/machine/latch.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/latch.cpp b/src/devices/machine/latch.cpp
index b6e04c6ec97..6cf14e413ea 100644
--- a/src/devices/machine/latch.cpp
+++ b/src/devices/machine/latch.cpp
@@ -3,7 +3,7 @@
#include "emu.h"
#include "latch.h"
-const device_type OUTPUT_LATCH = &device_creator<output_latch_device>;
+const device_type OUTPUT_LATCH = device_creator<output_latch_device>;
output_latch_device::output_latch_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, OUTPUT_LATCH, "Output Latch", tag, owner, clock, "output_latch", __FILE__),