diff options
author | François Revol <revol@free.fr> | 2003-04-05 12:11:10 +0000 |
---|---|---|
committer | François Revol <revol@free.fr> | 2003-04-05 12:11:10 +0000 |
commit | c8816e016739a47399372ffda0180bdddb0ceeba (patch) | |
tree | 5b241c38a3743211d23d876b3e95e94ec8e4fa3b | |
parent | 95c26348381e0fffd4b2d368bddb5ab694b45938 (diff) | |
download | ffmpeg-c8816e016739a47399372ffda0180bdddb0ceeba.tar.gz |
Fix for buggy (?) g++ (bailling out for beosaudio.cpp)
Originally committed as revision 1736 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/common.h b/libavcodec/common.h index 8708d884f5..c229a3a1c9 100644 --- a/libavcodec/common.h +++ b/libavcodec/common.h @@ -828,7 +828,7 @@ static inline int get_vlc_trace(GetBitContext *s, VLC_TYPE (*table)[2], int bits #define tprintf printf #else //TRACE -#define tprintf(...) {} +#define tprintf(_arg...) {} #endif /* define it to include statistics code (useful only for optimizing |