Commit 6a85ec8d authored by Zdenek Kabelac's avatar Zdenek Kabelac

* minor warning fix

Originally committed as revision 1209 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent adb43289
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment