From 7862bd3d4a50524b225bcb93ae43f6edbceae816 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Wed, 14 Dec 2011 15:11:10 +0100 Subject: [PATCH] Cosmetics: Improve 'too short LIST' error message in wav.c. --- libavformat/wav.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/wav.c b/libavformat/wav.c index 9d4b0708b8..ab4b3b42e7 100644 --- a/libavformat/wav.c +++ b/libavformat/wav.c @@ -508,7 +508,7 @@ static int wav_read_header(AVFormatContext *s, case MKTAG('L', 'I', 'S', 'T'): list_type = avio_rl32(pb); if (size < 4) { - av_log(s, AV_LOG_ERROR, "too short LIST"); + av_log(s, AV_LOG_ERROR, "too short LIST tag\n"); return AVERROR_INVALIDDATA; } switch (list_type) {