shithub: aubio

Download patch

ref: 56a758012bd2a5c1415f3f52cf80b90e4a75115e
parent: 474a573beece1af02259c2c3f194af2e88c0eafc
author: Paul Brossier <piem@piem.org>
date: Sun Mar 3 09:11:04 EST 2013

src/aubio_priv.h: fix AUBIO_WRN

--- a/src/aubio_priv.h
+++ b/src/aubio_priv.h
@@ -122,7 +122,7 @@
 #define AUBIO_ERR(format, args...)   fprintf(stderr, "AUBIO ERROR: " format , ##args)
 #define AUBIO_MSG(format, args...)   fprintf(stdout, format , ##args)
 #define AUBIO_DBG(format, args...)   fprintf(stderr, format , ##args)
-#define AUBIO_WRN(...)               fprintf(stderr, "AUBIO WARNING: " format, ##args)
+#define AUBIO_WRN(format, args...)   fprintf(stderr, "AUBIO WARNING: " format, ##args)
 #endif
 
 #define AUBIO_ERROR   AUBIO_ERR