Mercurial > libavutil.hg
changeset 283:0e64c1d076ef libavutil
Corrections so that builds with DEBUG work
author | mbardiaux |
---|---|
date | Thu, 08 Mar 2007 14:49:43 +0000 |
parents | 85ee113e8336 |
children | 4dd91a7d8633 |
files | internal.h |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/internal.h Tue Mar 06 13:04:47 2007 +0000 +++ b/internal.h Thu Mar 08 14:49:43 2007 +0000 @@ -150,9 +150,9 @@ /* dprintf macros */ #ifdef DEBUG -# define dprintf(fmt,...) av_log(NULL, AV_LOG_DEBUG, fmt, __VA_ARGS__) +# define dprintf(...) av_log(NULL, AV_LOG_DEBUG, __VA_ARGS__) #else -# define dprintf(fmt,...) +# define dprintf(...) #endif #define av_abort() do { av_log(NULL, AV_LOG_ERROR, "Abort at %s:%d\n", __FILE__, __LINE__); abort(); } while (0)