| Server IP : 82.208.35.60 / Your IP : 216.73.216.89 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/audio/xcdplayer/files/ |
Upload File : |
--- debug.c.orig 1993-01-12 18:59:35 UTC
+++ debug.c
@@ -15,28 +15,29 @@
# include <X11/Intrinsic.h>
-# include <varargs.h>
+# include <stdarg.h>
# include <stdio.h>
# include "debug.h"
+#include "app.h"
+
+extern AppData app_data;
+
/* VARARGS */
void
-debug_printf(va_alist)
- va_dcl
+debug_printf(int flag, char *fmt, ...)
{
va_list args;
- char *fmt;
- va_start(args);
+ va_start(args, fmt);
/*
* first arg is whether or not to print.
*/
- if ((va_arg(args, int) == 0) || (debug == False))
+ if ((flag == 0) || (app_data.debug == False))
return;
- fmt = va_arg(args, char *);
vfprintf(stdout, fmt, args);
fflush(stdout);