24 lines
551 B
Plaintext

$OpenBSD: patch-debug_c,v 1.1 2003/08/24 22:15:56 naddy Exp $
--- debug.c.orig 1993-01-12 19:59:35.000000000 +0100
+++ debug.c 2003-08-24 23:07:38.000000000 +0200
@@ -20,6 +20,10 @@
# include "debug.h"
+#include "app.h"
+
+extern AppData app_data;
+
/* VARARGS */
void
debug_printf(va_alist)
@@ -33,7 +37,7 @@ debug_printf(va_alist)
/*
* 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 *);