From 2395ae22ce8b9eea7cb4ebd9f8d6d707496119b4 Mon Sep 17 00:00:00 2001 From: Kirill Gavrilov Date: Mon, 12 Aug 2013 19:04:19 +0400 Subject: [PATCH] img2dec: fix typo (double "with with") Signed-off-by: Michael Niedermayer --- libavformat/img2dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }