diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-11-14 19:04:40 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-11-14 19:04:40 +0000 |
commit | 6a85ec8d9cd8cdd4a27a4e86a3a6087dca525256 (patch) | |
tree | 79288745ca480bea7914367fa02104c23f0ed5a9 | |
parent | adb4328917f8b4e0ea9462615ca9e9b5baa7334d (diff) | |
download | ffmpeg-6a85ec8d9cd8cdd4a27a4e86a3a6087dca525256.tar.gz |
* minor warning fix
Originally committed as revision 1209 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 e06055a916..c214df9227 100644 --- a/libavcodec/common.h +++ b/libavcodec/common.h @@ -836,7 +836,7 @@ static inline int ff_sqrt(int a) /** * converts fourcc string to int */ -static inline int ff_get_fourcc(char *s){ +static inline int ff_get_fourcc(const char *s){ assert( strlen(s)==4 ); return (s[0]) + (s[1]<<8) + (s[2]<<16) + (s[3]<<24); |