提交 8ba31141 编写于 作者: M 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
上级 fc2dd7e3
......@@ -143,7 +143,7 @@ static int read_header(AVFormatContext *s, AVFormatParameters *ap)
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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册