Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2011-12-14 18:11:10 +0400
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2011-12-14 18:11:10 +0400
commit7862bd3d4a50524b225bcb93ae43f6edbceae816 (patch)
treef9ad9649137d104affc83a03a7b4d718986fab6a /libavformat/wav.c
parenta8e93ce4cb74dc26153bdccfbe8a487674e583a6 (diff)
Cosmetics: Improve 'too short LIST' error message in wav.c.
Diffstat (limited to 'libavformat/wav.c')
-rw-r--r--libavformat/wav.c2
1 files changed, 1 insertions, 1 deletions
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) {