diff options
author | Kirill Gavrilov <kirill@sview.ru> | 2013-08-12 19:04:19 +0400 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-12 18:04:09 +0200 |
commit | 2395ae22ce8b9eea7cb4ebd9f8d6d707496119b4 (patch) | |
tree | 17df9f3c0912912918c4eeafedc7e64ce9cc3034 | |
parent | d4ab1292e9ac3a13a33d5405d8538b27a56fa7fd (diff) | |
download | ffmpeg-2395ae22ce8b9eea7cb4ebd9f8d6d707496119b4.tar.gz |
img2dec: fix typo (double "with with")
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/img2dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/img2dec.c b/libavformat/img2dec.c index b847d6c77f..5163e69f65 100644 --- a/libavformat/img2dec.c +++ b/libavformat/img2dec.c @@ -272,7 +272,7 @@ static int img_read_header(AVFormatContext *s1) if (find_image_range(&first_index, &last_index, s->path, s->start_number, s->start_number_range) < 0) { av_log(s1, AV_LOG_ERROR, - "Could find no file with with path '%s' and index in the range %d-%d\n", + "Could find no file with path '%s' and index in the range %d-%d\n", s->path, s->start_number, s->start_number + s->start_number_range - 1); return AVERROR(ENOENT); } |