# HG changeset patch # User kabi # Date 1037300680 0 # Node ID 704f13bfc6521691e2ad8bce51114fc34def7f2c # Parent 6eda806efda984d20c0189c2c51f44c914bb8148 * minor warning fix diff -r 6eda806efda9 -r 704f13bfc652 common.h --- 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);