Commit 8ba31141 authored by Michael Niedermayer's avatar Michael Niedermayer

Silence "assdec.c:146: warning: passing argument 4 of ‘qsort’ from incompatible pointer type"

The alternative (schoolbook) solution is less readable.

Originally committed as revision 17230 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent fc2dd7e3
...@@ -143,7 +143,7 @@ static int read_header(AVFormatContext *s, AVFormatParameters *ap) ...@@ -143,7 +143,7 @@ static int read_header(AVFormatContext *s, AVFormatParameters *ap)
p++; p++;
} }
qsort(ass->event, ass->event_count, sizeof(*ass->event), event_cmp); qsort(ass->event, ass->event_count, sizeof(*ass->event), (void*)event_cmp);
return 0; return 0;
......
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