diff options
| author | Antoine Cellerier <dionoea@videolan.org> | 2006-08-10 21:25:59 +0000 |
|---|---|---|
| committer | Antoine Cellerier <dionoea@videolan.org> | 2006-08-10 21:25:59 +0000 |
| commit | 72fcc90f7671193fd704d9538535cc25f1bc0469 (patch) | |
| tree | 027d47f73c5c0f4df604a75378d4b3626f85ded4 /apps/codecs | |
| parent | 13be687920e646008b52aa133399d595a2646cd1 (diff) | |
| download | rockbox-72fcc90f7671193fd704d9538535cc25f1bc0469.zip rockbox-72fcc90f7671193fd704d9538535cc25f1bc0469.tar.gz rockbox-72fcc90f7671193fd704d9538535cc25f1bc0469.tar.bz2 rockbox-72fcc90f7671193fd704d9538535cc25f1bc0469.tar.xz | |
Only cast if value is used. This should fix a build warning.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10519 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
| -rw-r--r-- | apps/codecs/libfaad/syntax.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/codecs/libfaad/syntax.c b/apps/codecs/libfaad/syntax.c index 85e927b..27f9b8a 100644 --- a/apps/codecs/libfaad/syntax.c +++ b/apps/codecs/libfaad/syntax.c @@ -785,8 +785,9 @@ static uint8_t ics_info(NeAACDecHandle hDecoder, ic_stream *ics, bitfile *ld, { #ifdef MAIN_DEC ics->pred.predictor_reset_group_number = + (uint8_t) #endif - (uint8_t)faad_getbits(ld, 5 DEBUGVAR(1,54,"ics_info(): pred.predictor_reset_group_number")); + faad_getbits(ld, 5 DEBUGVAR(1,54,"ics_info(): pred.predictor_reset_group_number")); } for (sfb = 0; sfb < limit; sfb++) |