summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/mm58167.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/mm58167.cpp')
-rw-r--r--src/devices/machine/mm58167.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/mm58167.cpp b/src/devices/machine/mm58167.cpp
index 74572770710..ed66df7603f 100644
--- a/src/devices/machine/mm58167.cpp
+++ b/src/devices/machine/mm58167.cpp
@@ -93,7 +93,7 @@ void mm58167_device::device_reset()
}
-INLINE UINT8 make_bcd(UINT8 data)
+static inline UINT8 make_bcd(UINT8 data)
{
return ((data / 10) << 4) | (data % 10);
}