diff options
author | Eric Wong <normalperson@yhbt.net> | 2008-09-17 14:24:41 -0700 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-09-17 14:24:58 -0700 |
commit | d1e6397e84f612c091eb9479031aed77a8131b93 (patch) | |
tree | dca2efb09c17141368d4b7b384a040a8ddfb651e /src/inputPlugins | |
parent | ebaee174fc6cdc15a94654239de97ee55f7de5b2 (diff) | |
download | mpd-d1e6397e84f612c091eb9479031aed77a8131b93.tar.gz mpd-d1e6397e84f612c091eb9479031aed77a8131b93.tar.xz mpd-d1e6397e84f612c091eb9479031aed77a8131b93.zip |
mp3: fix long line, I can't read past 80 cols
Diffstat (limited to 'src/inputPlugins')
-rw-r--r-- | src/inputPlugins/mp3_plugin.c | 3 |
1 files changed, 2 insertions, 1 deletions
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; } |