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
1 changed files with 1 additions and 1 deletions

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