mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
lavf/mpegts: Do not return the result of a (void) function from a void function.
Fixes compilation with Sun C 5.10.
This commit is contained in:
parent
5b12b4fc4b
commit
7c73d21523
@ -2689,7 +2689,7 @@ int ff_mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt,
|
||||
|
||||
void ff_mpegts_parse_close(MpegTSContext *ts)
|
||||
{
|
||||
return avpriv_mpegts_parse_close(ts);
|
||||
avpriv_mpegts_parse_close(ts);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user