From 56a758012bd2a5c1415f3f52cf80b90e4a75115e Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sun, 3 Mar 2013 14:11:04 -0500 Subject: [PATCH] src/aubio_priv.h: fix AUBIO_WRN --- src/aubio_priv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aubio_priv.h b/src/aubio_priv.h index 662536fc..ccc19558 100644 --- a/src/aubio_priv.h +++ b/src/aubio_priv.h @@ -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 -- 2.11.0