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

pull/2/head
Carl Eugen Hoyos 13 years ago
parent a8e93ce4cb
commit 7862bd3d4a
  1. 2
      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) {

Loading…
Cancel
Save