Commit 7c73d215 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

lavf/mpegts: Do not return the result of a (void) function from a void function.

Fixes compilation with Sun C 5.10.
parent 5b12b4fc
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment