Cosmetics: Improve 'too short LIST' error message in wav.c.

This commit is contained in:
Carl Eugen Hoyos 2011-12-14 15:11:10 +01:00
parent a8e93ce4cb
commit 7862bd3d4a

View File

@ -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) {