aboutsummaryrefslogtreecommitdiffstats
path: root/audio/xcdplayer
diff options
context:
space:
mode:
authornaddy <naddy@FreeBSD.org>2003-08-29 00:56:58 +0800
committernaddy <naddy@FreeBSD.org>2003-08-29 00:56:58 +0800
commitf109a78729e4396a583e18a07443506dea2ab962 (patch)
tree4f834706aa2b098f6d9f702de1b7f8ab8b1529d9 /audio/xcdplayer
parent36861fb8379c5f7da5d5135ea2d9a2319f0c4967 (diff)
downloadfreebsd-ports-gnome-f109a78729e4396a583e18a07443506dea2ab962.tar.gz
freebsd-ports-gnome-f109a78729e4396a583e18a07443506dea2ab962.tar.zst
freebsd-ports-gnome-f109a78729e4396a583e18a07443506dea2ab962.zip
Convert from varargs.h to stdarg.h in order to fix build on -CURRENT.
Diffstat (limited to 'audio/xcdplayer')
-rw-r--r--audio/xcdplayer/files/patch-debug.c29
1 files changed, 23 insertions, 6 deletions
diff --git a/audio/xcdplayer/files/patch-debug.c b/audio/xcdplayer/files/patch-debug.c
index 1fd4576b765b..ec7f464e3c24 100644
--- a/audio/xcdplayer/files/patch-debug.c
+++ b/audio/xcdplayer/files/patch-debug.c
@@ -2,8 +2,14 @@
$FreeBSD$
--- debug.c.orig Tue Jan 12 19:59:35 1993
-+++ debug.c Mon Aug 25 00:38:35 2003
-@@ -20,6 +20,10 @@
++++ debug.c Mon Aug 25 01:36:43 2003
+@@ -15,28 +15,29 @@
+
+ # include <X11/Intrinsic.h>
+
+-# include <varargs.h>
++# include <stdarg.h>
+ # include <stdio.h>
# include "debug.h"
@@ -13,13 +19,24 @@ $FreeBSD$
+
/* VARARGS */
void
- debug_printf(va_alist)
-@@ -33,7 +37,7 @@
+-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 ((va_arg(args, int) == 0) || (app_data.debug == False))
++ if ((flag == 0) || (app_data.debug == False))
return;
- fmt = va_arg(args, char *);
+- fmt = va_arg(args, char *);
+ vfprintf(stdout, fmt, args);
+
+ fflush(stdout);