diff options
author | Michael Giacomelli <giac2000@hotmail.com> | 2008-03-27 01:40:16 +0000 |
---|---|---|
committer | Michael Giacomelli <giac2000@hotmail.com> | 2008-03-27 01:40:16 +0000 |
commit | 03f1b9853153683b854350d0795b2bbc110bbf03 (patch) | |
tree | be3549b0cfcf2e9a95a5fa85e55f1c3361d1cc3a /apps | |
parent | b35d45db0281f89ed8aa09c25668ed3cd73c453e (diff) |
Fix misleading debug statement.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16838 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/codecs/libwma/wmadeci.c | 2 |
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) int nb_coefs[MAX_CHANNELS]; fixed32 mdct_norm; - DEBUGF("***decode_block: %d (%d samples of %d in frame)\n", s->block_num, s->frame_len, s->block_len); + DEBUGF("***decode_block: %d (%d samples of %d in frame)\n", s->block_num, s->block_len, s->frame_len); /* compute current block length */ if (s->use_variable_block_len) |