aboutsummaryrefslogtreecommitdiffstats
path: root/audio/xcdplayer/files/patch-debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'audio/xcdplayer/files/patch-debug.c')
-rw-r--r--audio/xcdplayer/files/patch-debug.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/audio/xcdplayer/files/patch-debug.c b/audio/xcdplayer/files/patch-debug.c
new file mode 100644
index 000000000000..1fd4576b765b
--- /dev/null
+++ b/audio/xcdplayer/files/patch-debug.c
@@ -0,0 +1,25 @@
+
+$FreeBSD$
+
+--- debug.c.orig Tue Jan 12 19:59:35 1993
++++ debug.c Mon Aug 25 00:38:35 2003
+@@ -20,6 +20,10 @@
+
+ # include "debug.h"
+
++#include "app.h"
++
++extern AppData app_data;
++
+ /* VARARGS */
+ void
+ debug_printf(va_alist)
+@@ -33,7 +37,7 @@
+ /*
+ * first arg is whether or not to print.
+ */
+- if ((va_arg(args, int) == 0) || (debug == False))
++ if ((va_arg(args, int) == 0) || (app_data.debug == False))
+ return;
+
+ fmt = va_arg(args, char *);