summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Giacomelli <giac2000@hotmail.com>2008-03-27 01:40:16 +0000
committerMichael Giacomelli <giac2000@hotmail.com>2008-03-27 01:40:16 +0000
commit03f1b9853153683b854350d0795b2bbc110bbf03 (patch)
treebe3549b0cfcf2e9a95a5fa85e55f1c3361d1cc3a
parentb35d45db0281f89ed8aa09c25668ed3cd73c453e (diff)
downloadrockbox-03f1b9853153683b854350d0795b2bbc110bbf03.tar.gz
rockbox-03f1b9853153683b854350d0795b2bbc110bbf03.zip
Fix misleading debug statement.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16838 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/codecs/libwma/wmadeci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libwma/wmadeci.c b/apps/codecs/libwma/wmadeci.c
index 084882a4d9..66b3039869 100644
--- a/apps/codecs/libwma/wmadeci.c
+++ b/apps/codecs/libwma/wmadeci.c
@@ -906,7 +906,7 @@ static int wma_decode_block(WMADecodeContext *s)
906 int nb_coefs[MAX_CHANNELS]; 906 int nb_coefs[MAX_CHANNELS];
907 fixed32 mdct_norm; 907 fixed32 mdct_norm;
908 908
909 DEBUGF("***decode_block: %d (%d samples of %d in frame)\n", s->block_num, s->frame_len, s->block_len); 909 DEBUGF("***decode_block: %d (%d samples of %d in frame)\n", s->block_num, s->block_len, s->frame_len);
910 910
911 /* compute current block length */ 911 /* compute current block length */
912 if (s->use_variable_block_len) 912 if (s->use_variable_block_len)