mp3: fix long line, I can't read past 80 cols

This commit is contained in:
Eric Wong 2008-09-23 20:47:40 +02:00 committed by Max Kellermann
parent 7613688575
commit 3263dbe517
1 changed files with 2 additions and 1 deletions

View File

@ -777,7 +777,8 @@ static int decodeFirstFrame(mp3DecodeData * data,
if (!data->maxFrames) return -1;
if (data->maxFrames > 8 * 1024 * 1024) {
ERROR("mp3 file header indicates too many frames: %lu", data->maxFrames);
ERROR("mp3 file header indicates too many frames: %lu",
data->maxFrames);
return -1;
}