diff options
| author | Thomas Jarosch <tomj@simonv.com> | 2011-10-08 11:11:22 +0000 |
|---|---|---|
| committer | Thomas Jarosch <tomj@simonv.com> | 2011-10-08 11:11:22 +0000 |
| commit | 670da39093da79e1b3d1c6ba22909cac33f65262 (patch) | |
| tree | 2bfb92b2d1ecd698f3c763147ac07216c2c96788 /apps/codecs | |
| parent | 000c70689670fdc2fcd0192ca71c8e55407e092f (diff) | |
| download | rockbox-670da39093da79e1b3d1c6ba22909cac33f65262.zip rockbox-670da39093da79e1b3d1c6ba22909cac33f65262.tar.gz rockbox-670da39093da79e1b3d1c6ba22909cac33f65262.tar.bz2 rockbox-670da39093da79e1b3d1c6ba22909cac33f65262.tar.xz | |
Remove errorneous ; after "for" statement.
Detected by my upcoming cppcheck check
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30731 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
| -rw-r--r-- | apps/codecs/libfaad/syntax.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libfaad/syntax.c b/apps/codecs/libfaad/syntax.c index af1a50f..d3d7f9e 100644 --- a/apps/codecs/libfaad/syntax.c +++ b/apps/codecs/libfaad/syntax.c @@ -2165,7 +2165,7 @@ static uint8_t dynamic_range_info(bitfile *ld, drc_info *drc) n++; drc->num_bands += band_incr; - for (i = 0; i < drc->num_bands; i++); + for (i = 0; i < drc->num_bands; i++) { drc->band_top[i] = (uint8_t)faad_getbits(ld, 8 DEBUGVAR(1,97,"dynamic_range_info(): band_top")); |