From 0e06f6104e431b8907f5bfe2c8eb1428292f1f79 Mon Sep 17 00:00:00 2001 From: AJR Date: Thu, 30 Mar 2023 21:05:52 -0400 Subject: swim2.cpp: Put U suffix in proper place for LOG_xxx constant macros --- src/devices/machine/swim2.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/machine/swim2.cpp b/src/devices/machine/swim2.cpp index d1834aad676..70a1950bbbd 100644 --- a/src/devices/machine/swim2.cpp +++ b/src/devices/machine/swim2.cpp @@ -9,8 +9,8 @@ #include "emu.h" #include "swim2.h" -#define LOG_SETUP (1 << 1U) -#define LOG_MODE (1 << 2U) +#define LOG_SETUP (1U << 1) +#define LOG_MODE (1U << 2) #define VERBOSE 0 #include "logmacro.h" -- cgit v1.2.3