summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/upc82c710.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/upc82c710.cpp')
-rw-r--r--src/devices/machine/upc82c710.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/machine/upc82c710.cpp b/src/devices/machine/upc82c710.cpp
index bf6352a69c7..4f9927b0b09 100644
--- a/src/devices/machine/upc82c710.cpp
+++ b/src/devices/machine/upc82c710.cpp
@@ -9,11 +9,11 @@
#include "emu.h"
#include "machine/upc82c710.h"
-#define LOG_CFG (1 << 0)
-#define LOG_FDC (1 << 1)
-#define LOG_IDE (1 << 2)
-#define LOG_LPT (1 << 3)
-#define LOG_SER (1 << 4)
+#define LOG_CFG (1U << 1)
+#define LOG_FDC (1U << 2)
+#define LOG_IDE (1U << 3)
+#define LOG_LPT (1U << 4)
+#define LOG_SER (1U << 5)
#define VERBOSE (0)