shithub: aubio

Download patch

ref: 2b43a9ecb669387ed0d7fab4dc2df75e90cfc704
parent: db354e0153478ff7574db1decb9d54d90dc2d46f
author: Paul Brossier <piem@piem.org>
date: Mon Dec 30 14:01:23 EST 2013

examples/utils.h: fix fake debug when no variadic macros

--- a/examples/utils.h
+++ b/examples/utils.h
@@ -41,7 +41,7 @@
 #ifdef HAVE_DEBUG
 #define debug(...)                fprintf (stderr, format , **args)
 #else
-#define debug(...)                ()
+#define debug(...)
 #endif
 #define verbmsg(format, args...)  if (verbose) fprintf(stderr, format , ##args)
 #define errmsg(format, args...)   fprintf(stderr, format , ##args)
--