summaryrefslogtreecommitdiff
path: root/apps/plugins/flac2wav.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/flac2wav.c')
-rw-r--r--apps/plugins/flac2wav.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/plugins/flac2wav.c b/apps/plugins/flac2wav.c
index f68f3204f4..84b5ed15b2 100644
--- a/apps/plugins/flac2wav.c
+++ b/apps/plugins/flac2wav.c
@@ -64,9 +64,7 @@ FLAC__StreamDecoderWriteStatus flac_write_handler(const FLAC__SeekableStreamDeco
64 64
65 if (samples*frame->header.channels > (FLAC_MAX_SUPPORTED_BLOCKSIZE*FLAC_MAX_SUPPORTED_CHANNELS)) { 65 if (samples*frame->header.channels > (FLAC_MAX_SUPPORTED_BLOCKSIZE*FLAC_MAX_SUPPORTED_CHANNELS)) {
66 // ERROR!!! 66 // ERROR!!!
67#ifdef SIMULATOR 67 DEBUGF("ERROR: samples*frame->header.channels=%d\n",samples*frame->header.channels);
68 printf("ERROR: samples*frame->header.channels=%d\n",samples*frame->header.channels);
69#endif
70 return(FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE); 68 return(FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE);
71 } 69 }
72 70