summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2005-09-07 02:41:00 +0000
committerThom Johansen <thomj@rockbox.org>2005-09-07 02:41:00 +0000
commitfb30e720e25bf1029ae6d9ae5aff4389faf3dd0a (patch)
tree197168dcc5eb9911e66887c0372686e5265f7a5c /apps
parent5e3e9578108d628b9d2a98c643c6c8bb4f1e6958 (diff)
downloadrockbox-fb30e720e25bf1029ae6d9ae5aff4389faf3dd0a.tar.gz
rockbox-fb30e720e25bf1029ae6d9ae5aff4389faf3dd0a.zip
Fix red build with a comment for now.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7489 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/codecs/flac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/flac.c b/apps/codecs/flac.c
index 61605bc9ec..725157720e 100644
--- a/apps/codecs/flac.c
+++ b/apps/codecs/flac.c
@@ -69,7 +69,7 @@ FLAC__StreamDecoderWriteStatus flac_write_handler(const FLAC__SeekableStreamDeco
69 69
70 if (samples*frame->header.channels > (FLAC_MAX_SUPPORTED_BLOCKSIZE*FLAC_MAX_SUPPORTED_CHANNELS)) { 70 if (samples*frame->header.channels > (FLAC_MAX_SUPPORTED_BLOCKSIZE*FLAC_MAX_SUPPORTED_CHANNELS)) {
71 // ERROR!!! 71 // ERROR!!!
72 DEBUGF("ERROR: samples*frame->header.channels=%d\n",samples*frame->header.channels); 72 // DEBUGF("ERROR: samples*frame->header.channels=%d\n",samples*frame->header.channels);
73 return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE; 73 return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE;
74 } 74 }
75 75