From e47c4133206f70de70e37cde68db58ac87b1a3b7 Mon Sep 17 00:00:00 2001 From: Joakim Larsson Edstrom Date: Mon, 21 Nov 2016 19:28:36 +0100 Subject: [PATCH] using semicolon for safety instead of curly brackets --- src/devices/machine/z80scc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/machine/z80scc.cpp b/src/devices/machine/z80scc.cpp index ca80df4f3b7..bc5a343468d 100644 --- a/src/devices/machine/z80scc.cpp +++ b/src/devices/machine/z80scc.cpp @@ -79,7 +79,7 @@ DONE (x) (p=partly) NMOS CMOS ESCC EMSCC // printf("TAG %lld %s%s Data:%d\n", machine().firstcpu->total_cycles(), __PRETTY_FUNCTION__, m_owner->tag(), data); #define VERBOSE 0 -#define LOGPRINT(x) { do { if (VERBOSE) logerror x; } while (0); } +#define LOGPRINT(x) do { if (VERBOSE) logerror x; } while (0); #define LOG(x) {} LOGPRINT(x) #define LOGR(x) {} LOGPRINT(x) #define LOGSETUP(x) {} LOGPRINT(x)