1
0
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:
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) void ff_mpegts_parse_close(MpegTSContext *ts)
{ {
return avpriv_mpegts_parse_close(ts); avpriv_mpegts_parse_close(ts);
} }
#endif #endif