From d1e6397e84f612c091eb9479031aed77a8131b93 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Wed, 17 Sep 2008 14:24:41 -0700 Subject: mp3: fix long line, I can't read past 80 cols --- src/inputPlugins/mp3_plugin.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/inputPlugins/mp3_plugin.c b/src/inputPlugins/mp3_plugin.c index bc1fb50c5..a9dad8904 100644 --- a/src/inputPlugins/mp3_plugin.c +++ b/src/inputPlugins/mp3_plugin.c @@ -775,7 +775,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; } -- cgit v1.2.3