diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-08-07 09:55:40 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-08-07 09:55:40 +0200 |
commit | 7c73d215231adcf81c03c95caf5ed1f0c33c727b (patch) | |
tree | 6bb320beeefc075eb0df79af293f361e21c455c3 /libavformat | |
parent | 5b12b4fc4b2217a5ea69c4ca6dbb5debeb39bb2b (diff) | |
download | ffmpeg-7c73d215231adcf81c03c95caf5ed1f0c33c727b.tar.gz |
lavf/mpegts: Do not return the result of a (void) function from a void function.
Fixes compilation with Sun C 5.10.
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mpegts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 55816de6c0..2b18695b25 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -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 |