From: Paul Brossier Date: Sun, 3 Mar 2013 19:11:04 +0000 (-0500) Subject: src/aubio_priv.h: fix AUBIO_WRN X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=56a758012bd2a5c1415f3f52cf80b90e4a75115e;p=aubio.git src/aubio_priv.h: fix AUBIO_WRN --- 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