From 5c91a6755b6412c918e20ff4735ca30f38a12569 Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Mon, 10 Feb 2003 09:35:32 +0000 Subject: * static,const,compiler warning cleanup Originally committed as revision 1567 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/cutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/cutils.c') diff --git a/libavformat/cutils.c b/libavformat/cutils.c index ce2c845226..3e46533c6b 100644 --- a/libavformat/cutils.c +++ b/libavformat/cutils.c @@ -60,7 +60,7 @@ int stristart(const char *str, const char *val, const char **ptr) p = str; q = val; while (*q != '\0') { - if (toupper(*(unsigned char *)p) != toupper(*(unsigned char *)q)) + if (toupper(*(const unsigned char *)p) != toupper(*(const unsigned char *)q)) return 0; p++; q++; -- cgit v1.2.3