summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/codecs/flac.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/codecs/flac.c b/apps/codecs/flac.c
index 64d380d2a2..e8b7f9ad83 100644
--- a/apps/codecs/flac.c
+++ b/apps/codecs/flac.c
@@ -121,7 +121,8 @@ static bool flac_init(FLACContext* fc, int first_frame_offset)
121 int max_blocksize = (buf[2] << 8) | buf[3]; 121 int max_blocksize = (buf[2] << 8) | buf[3];
122 if (max_blocksize > MAX_BLOCKSIZE) 122 if (max_blocksize > MAX_BLOCKSIZE)
123 { 123 {
124 LOGF("FLAC: Maximum blocksize is too large\n"); 124 LOGF("FLAC: Maximum blocksize is too large (%d > %d)\n",
125 max_blocksize, MAX_BLOCKSIZE);
125 return false; 126 return false;
126 } 127 }
127 fc->max_blocksize = max_blocksize; 128 fc->max_blocksize = max_blocksize;