Mercurial > libavcodec.hg
diff common.h @ 865:704f13bfc652 libavcodec
* minor warning fix
| author | kabi |
|---|---|
| date | Thu, 14 Nov 2002 19:04:40 +0000 |
| parents | 058194d7ade6 |
| children | 1c32039e7215 |
line wrap: on
line diff
--- a/common.h Thu Nov 14 18:43:49 2002 +0000 +++ b/common.h Thu Nov 14 19:04:40 2002 +0000 @@ -836,7 +836,7 @@ /** * 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);
