From 3263dbe51793f355eeb51732396474c91feeb1ba Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Tue, 23 Sep 2008 20:47:40 +0200 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(-) (limited to 'src') diff --git a/src/inputPlugins/mp3_plugin.c b/src/inputPlugins/mp3_plugin.c index cd66d77c3..cf05d98c9 100644 --- a/src/inputPlugins/mp3_plugin.c +++ b/src/inputPlugins/mp3_plugin.c @@ -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; } -- cgit v1.2.3