src/aubio_priv.h: fix AUBIO_WRN
authorPaul Brossier <piem@piem.org>
Sun, 3 Mar 2013 19:11:04 +0000 (14:11 -0500)
committerPaul Brossier <piem@piem.org>
Sun, 3 Mar 2013 19:11:04 +0000 (14:11 -0500)
src/aubio_priv.h

index 662536fc7e6fe3c367d04472601d4f6788628ad3..ccc195589773147c14fac2dcea186278bcb67a71 100644 (file)
@@ -122,7 +122,7 @@ typedef enum {
 #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