1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00
freebsd-ports/x11/dxpc/files/patch-EncodeBuffer.C
Volker Stolz 1fc50e17e9 Update to 3.9.0
PR:		ports/95821
Submitted by:	Ports Fury
2006-05-24 13:40:51 +00:00

15 lines
355 B
C

--- EncodeBuffer.C.orig Wed Mar 1 05:46:52 2006
+++ EncodeBuffer.C Thu Apr 13 12:16:46 2006
@@ -13,9 +13,9 @@
// #define DEBUG
#ifdef DEBUG
-# define DBG(fmt, ...) printf(fmt, __VA_ARGS__)
+# define DBG(fmt, ARGS...) printf(fmt, ##ARGS)
#else
-# define DBG(fmt,...)
+# define DBG(fmt, ARGS...)
#endif
static const int INITIAL_BUFFER_SIZE = 256;