Revision: 45741
http://sourceforge.net/p/vice-emu/code/45741
Author: gpz
Date: 2025-08-23 12:37:34 +0000 (Sat, 23 Aug 2025)
Log Message:
-----------
fix DBG macro
Modified Paths:
--------------
trunk/vice/src/arch/shared/console_unix.c
trunk/vice/src/monitor/mon_util.c
trunk/vice/src/monitor/monitor.c
Modified: trunk/vice/src/arch/shared/console_unix.c
===================================================================
--- trunk/vice/src/arch/shared/console_unix.c 2025-08-23 12:21:50 UTC (rev 45740)
+++ trunk/vice/src/arch/shared/console_unix.c 2025-08-23 12:37:34 UTC (rev 45741)
@@ -49,7 +49,7 @@
/*#define DEBUG_CONSOLE*/
#ifdef DEBUG_CONSOLE
-#define DBG(x) log_printf
+#define DBG(x) log_printf x
#else
#define DBG(x)
#endif
Modified: trunk/vice/src/monitor/mon_util.c
===================================================================
--- trunk/vice/src/monitor/mon_util.c 2025-08-23 12:21:50 UTC (rev 45740)
+++ trunk/vice/src/monitor/mon_util.c 2025-08-23 12:37:34 UTC (rev 45741)
@@ -52,7 +52,7 @@
/*#define DEBUG_MONUTIL*/
#ifdef DEBUG_MONUTIL
-#define DBG(x) log_printf
+#define DBG(x) log_printf x
#else
#define DBG(x)
#endif
Modified: trunk/vice/src/monitor/monitor.c
===================================================================
--- trunk/vice/src/monitor/monitor.c 2025-08-23 12:21:50 UTC (rev 45740)
+++ trunk/vice/src/monitor/monitor.c 2025-08-23 12:37:34 UTC (rev 45741)
@@ -96,7 +96,7 @@
/*#define DEBUG_MONITOR*/
#ifdef DEBUG_MONITOR
-#define DBG(x) log_printf
+#define DBG(x) log_printf x
#else
#define DBG(x)
#endif
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|