mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
1fc50e17e9
PR: ports/95821 Submitted by: Ports Fury
15 lines
355 B
C
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;
|