diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-12-14 15:11:10 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-12-14 15:11:10 +0100 |
commit | 7862bd3d4a50524b225bcb93ae43f6edbceae816 (patch) | |
tree | f9ad9649137d104affc83a03a7b4d718986fab6a | |
parent | a8e93ce4cb74dc26153bdccfbe8a487674e583a6 (diff) | |
download | ffmpeg-7862bd3d4a50524b225bcb93ae43f6edbceae816.tar.gz |
Cosmetics: Improve 'too short LIST' error message in wav.c.
-rw-r--r-- | libavformat/wav.c | 2 |
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) { |