diff options
author | Dan Christiansen <danchr@daimi.au.dk> | 2003-10-19 21:05:41 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-10-19 21:05:41 +0000 |
commit | dc7cb06ae0f1a24ca0aa106eacc332ceba518928 (patch) | |
tree | 0ceb16ec5a54f279e929937435f9bcdeb6318aab /libavcodec/common.h | |
parent | 4cb3f3b6376474ae251421d5bb318998a3776ae8 (diff) | |
download | ffmpeg-dc7cb06ae0f1a24ca0aa106eacc332ceba518928.tar.gz |
gcc->C99 and warning fixes patch by (Dan Christiansen <danchr at daimi dot au dot dk>)
Originally committed as revision 2399 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/common.h')
-rw-r--r-- | libavcodec/common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/common.h b/libavcodec/common.h index d9df514263..7149ef8085 100644 --- a/libavcodec/common.h +++ b/libavcodec/common.h @@ -185,9 +185,9 @@ inline void dprintf(const char* fmt,...) {} # else # ifdef DEBUG -# define dprintf(fmt,args...) printf(fmt, ## args) +# define dprintf(fmt,...) printf(fmt, __VA_ARGS__) # else -# define dprintf(fmt,args...) +# define dprintf(fmt,...) # endif # endif /* !CONFIG_WIN32 */ |