1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-02 14:33:23 +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:
Carl Eugen Hoyos 2014-08-07 09:55:40 +02:00
parent 5b12b4fc4b
commit 7c73d21523

View File

@ -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