summaryrefslogtreecommitdiff
path: root/apps/plugins/lrcplayer.c
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2011-05-01 13:48:28 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2011-05-01 13:48:28 +0000
commitf7c45941344ecfbcdd5d9b311b61573d37c6ef58 (patch)
tree4c2fa595d7209694dd30b0e0b349a0a44116d712 /apps/plugins/lrcplayer.c
parent08fb3f65745a237e2c1eae55d856ff27702246e5 (diff)
downloadrockbox-f7c45941344ecfbcdd5d9b311b61573d37c6ef58.tar.gz
rockbox-f7c45941344ecfbcdd5d9b311b61573d37c6ef58.zip
Fix further 'variable set but not used' warnings reported from GCC 4.6.0.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29809 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lrcplayer.c')
-rw-r--r--apps/plugins/lrcplayer.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/plugins/lrcplayer.c b/apps/plugins/lrcplayer.c
index 8e9878f78b..a124863cc3 100644
--- a/apps/plugins/lrcplayer.c
+++ b/apps/plugins/lrcplayer.c
@@ -1193,7 +1193,6 @@ static void parse_id3v2(int fd)
1193 int bytesread = 0; 1193 int bytesread = 0;
1194 unsigned char global_flags; 1194 unsigned char global_flags;
1195 int flags; 1195 int flags;
1196 int skip;
1197 bool global_unsynch = false; 1196 bool global_unsynch = false;
1198 bool global_ff_found = false; 1197 bool global_ff_found = false;
1199 bool unsynch = false; 1198 bool unsynch = false;
@@ -1235,7 +1234,6 @@ static void parse_id3v2(int fd)
1235 1234
1236 /* Skip the extended header if it is present */ 1235 /* Skip the extended header if it is present */
1237 if(global_flags & 0x40) { 1236 if(global_flags & 0x40) {
1238 skip = 0;
1239 1237
1240 if(version == ID3_VER_2_3) { 1238 if(version == ID3_VER_2_3) {
1241 if(10 != rb->read(fd, header, 10)) 1239 if(10 != rb->read(fd, header, 10))