From bbb11f383ee86cb7e6dbd5205f817d6a92e91d99 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 3 Jan 2013 16:02:47 +0100 Subject: [PATCH] lavf: add return to silence compiler warning The added statement is not reachable Signed-off-by: Michael Niedermayer --- libavformat/utils.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/utils.c b/libavformat/utils.c index 195814b9b3..1ffde2328f 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2123,6 +2123,7 @@ int avformat_seek_file(AVFormatContext *s, int stream_index, int64_t min_ts, int } // try some generic seek like seek_frame_generic() but with new ts semantics + return -1; //unreachable } /*******************************************************/