summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/74166.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/74166.h')
-rw-r--r--src/devices/machine/74166.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/74166.h b/src/devices/machine/74166.h
index 77497b1be5e..a256f904bf4 100644
--- a/src/devices/machine/74166.h
+++ b/src/devices/machine/74166.h
@@ -31,10 +31,10 @@
//**************************************************************************
#define MCFG_TTL166_DATA_CB(_devcb) \
- devcb = &downcast<ttl166_device &>(*device).set_data_callback(DEVCB_##_devcb);
+ downcast<ttl166_device &>(*device).set_data_callback(DEVCB_##_devcb);
#define MCFG_TTL166_QH_CB(_devcb) \
- devcb = &downcast<ttl166_device &>(*device).set_qh_callback(DEVCB_##_devcb);
+ downcast<ttl166_device &>(*device).set_qh_callback(DEVCB_##_devcb);
//**************************************************************************