Commit a37c0da6 authored by kabi's avatar kabi

* minor warning fix


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@1209 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1be66a3d
...@@ -836,7 +836,7 @@ static inline int ff_sqrt(int a) ...@@ -836,7 +836,7 @@ static inline int ff_sqrt(int a)
/** /**
* converts fourcc string to int * 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 ); assert( strlen(s)==4 );
return (s[0]) + (s[1]<<8) + (s[2]<<16) + (s[3]<<24); 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