* minor warning fix

Originally committed as revision 1209 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Zdenek Kabelac 2002-11-14 19:04:40 +00:00
parent adb4328917
commit 6a85ec8d9c
1 changed files with 1 additions and 1 deletions

View File

@ -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);