Mercurial > libavcodec.hg
changeset 865:704f13bfc652 libavcodec
* minor warning fix
author | kabi |
---|---|
date | Thu, 14 Nov 2002 19:04:40 +0000 |
parents | 6eda806efda9 |
children | 725ef4ea3ecc |
files | common.h |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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);