From c5a978bca7601f4dd2c4a0ebe397275021eb6cb1 Mon Sep 17 00:00:00 2001 From: MooglyGuy Date: Tue, 23 May 2023 07:41:27 +0200 Subject: Cleaned up logging across the codebase (GitHub #10183). (#11250) [Ryan Holtz] * Converted various logging patterns to use logmacro.h consistently. * Removed redefinitions of LOG_GENERAL. * Use LOGMASKED in more places. --- src/devices/machine/pcf8573.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/devices/machine/pcf8573.cpp') diff --git a/src/devices/machine/pcf8573.cpp b/src/devices/machine/pcf8573.cpp index 791336b4bf5..e4bc4d7bc23 100644 --- a/src/devices/machine/pcf8573.cpp +++ b/src/devices/machine/pcf8573.cpp @@ -12,8 +12,8 @@ #include "emu.h" #include "pcf8573.h" -#define LOG_DATA (1 << 1) -#define LOG_LINE (1 << 2) +#define LOG_DATA (1U << 1) +#define LOG_LINE (1U << 2) #define VERBOSE (0) #include "logmacro.h" -- cgit v1.2.3-70-g09d2