diff options
author | Nick Kurshev <nickols_k@mail.ru> | 2001-11-10 14:36:12 +0000 |
---|---|---|
committer | Nick Kurshev <nickols_k@mail.ru> | 2001-11-10 14:36:12 +0000 |
commit | a822a47983068ea9ca721c5a3359734c79837195 (patch) | |
tree | 25d738d4b1d325b81d325e53b03e402b4c120d4c /libavcodec/common.h | |
parent | 6c426cff79d109fb1f22054f2a8cbe5532437f58 (diff) | |
download | ffmpeg-a822a47983068ea9ca721c5a3359734c79837195.tar.gz |
fixed gcc-3.0.x compilation (by Michael Niedermayer)
Originally committed as revision 211 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/common.h')
-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 2b1debac89..d53e70e91b 100644 --- a/libavcodec/common.h +++ b/libavcodec/common.h @@ -344,7 +344,7 @@ void print_stats(void); /* misc math functions */ -extern inline int av_log2(unsigned int v) +static inline int av_log2(unsigned int v) { int n; |