[FFmpeg-cvslog] Cosmetics: Improve 'too short LIST' error message in wav.c.
Carl Eugen Hoyos
git at videolan.org
Wed Dec 14 15:17:08 CET 2011
ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Wed Dec 14 15:11:10 2011 +0100| [7862bd3d4a50524b225bcb93ae43f6edbceae816] | committer: Carl Eugen Hoyos
Cosmetics: Improve 'too short LIST' error message in wav.c.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7862bd3d4a50524b225bcb93ae43f6edbceae816
---
libavformat/wav.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavformat/wav.c b/libavformat/wav.c
index 9d4b070..ab4b3b4 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) {
More information about the ffmpeg-cvslog
mailing list