From 592a854f8c8bf402efad5d651363bdb17f85786a Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 5 Aug 2014 18:16:46 +0200 Subject: [PATCH] avformat/iff: Fix "source comment" Signed-off-by: Michael Niedermayer --- libavformat/iff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/iff.c b/libavformat/iff.c index 62f0b8387c2..2a0633158f1 100644 --- a/libavformat/iff.c +++ b/libavformat/iff.c @@ -584,7 +584,7 @@ static int iff_read_header(AVFormatContext *s) } break; case 2: - tag = ref < FF_ARRAY_ELEMS(dsd_source_comment) ? dsd_history_comment[ref] : "source_comment"; + tag = ref < FF_ARRAY_ELEMS(dsd_source_comment) ? dsd_source_comment[ref] : "source_comment"; break; case 3: tag = ref < FF_ARRAY_ELEMS(dsd_history_comment) ? dsd_history_comment[ref] : "file_history"; -- 2.39.5