Commit 3263dbe5 authored by Eric Wong's avatar Eric Wong Committed by Max Kellermann

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

parent 76136885
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment