diff options
author | Eric Wong <normalperson@yhbt.net> | 2008-09-23 20:47:40 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-23 20:47:40 +0200 |
commit | 3263dbe51793f355eeb51732396474c91feeb1ba (patch) | |
tree | bc7ac44fff949bbda60539befdc26c191d0bd79c /src/inputPlugins/mp3_plugin.c | |
parent | 761368857585498400af9177050ef3e6493cc8a3 (diff) | |
download | mpd-3263dbe51793f355eeb51732396474c91feeb1ba.tar.gz mpd-3263dbe51793f355eeb51732396474c91feeb1ba.tar.xz mpd-3263dbe51793f355eeb51732396474c91feeb1ba.zip |
mp3: fix long line, I can't read past 80 cols
Diffstat (limited to '')
-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 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; } |