mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
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
This commit is contained in:
parent
fc2dd7e3de
commit
8ba311410a
@ -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;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user