diff --git a/src/devices/machine/68230pit.c b/src/devices/machine/68230pit.c index 0ec3300e992..d0acaf6ae45 100644 --- a/src/devices/machine/68230pit.c +++ b/src/devices/machine/68230pit.c @@ -171,7 +171,7 @@ WRITE8_MEMBER (pit68230_device::write){ break; default: - LOG (logerror ("unhandled register %02x", offset)) + LOG (logerror ("unhandled register %02x", offset)); } LOG (if (offset != ow_ofs || data != ow_data || ow_cnt >= 1000) { diff --git a/src/devices/machine/z80scc.h b/src/devices/machine/z80scc.h index 14ccf86dd76..07e95cac051 100644 --- a/src/devices/machine/z80scc.h +++ b/src/devices/machine/z80scc.h @@ -451,7 +451,7 @@ protected: WR11_TRXSRC_SRC_XTAL = 0x00, // 0 0 WR11_TRXSRC_SRC_TRA = 0x01, // 0 1 WR11_TRXSRC_SRC_BR = 0x02, // 1 0 - WR11_TRXSRC_SRC_DPLL = 0x03, // 1 1 + WR11_TRXSRC_SRC_DPLL = 0x03 // 1 1 }; enum diff --git a/src/devices/machine/z80sio.h b/src/devices/machine/z80sio.h index cdce00ced0f..d1a3eeb26ea 100644 --- a/src/devices/machine/z80sio.h +++ b/src/devices/machine/z80sio.h @@ -486,7 +486,7 @@ protected: enum { - TYPE_Z80SIO, + TYPE_Z80SIO }; enum diff --git a/src/mame/includes/chihiro.h b/src/mame/includes/chihiro.h index 504ebfdfa59..8c27277fe47 100644 --- a/src/mame/includes/chihiro.h +++ b/src/mame/includes/chihiro.h @@ -669,6 +669,6 @@ public: NV2A_COLOR_FORMAT_X1A7R8G8B8 = 0x0007, NV2A_COLOR_FORMAT_A8R8G8B8 = 0x0008, NV2A_COLOR_FORMAT_B8 = 0x0009, - NV2A_COLOR_FORMAT_G8B8 = 0x000a, + NV2A_COLOR_FORMAT_G8B8 = 0x000a }; };