diff options
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; } |