summaryrefslogtreecommitdiff
path: root/apps/plugins/rockboy/loader.c
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2011-05-03 20:28:56 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2011-05-03 20:28:56 +0000
commitf19d6a5e1d53feedf76a7edd7756386d9e52339b (patch)
tree152203f61b56c9896c53e867b2961cc018ca4ce5 /apps/plugins/rockboy/loader.c
parentbefabb2bab2736667d681c192bf4cb51b3aca032 (diff)
downloadrockbox-f19d6a5e1d53feedf76a7edd7756386d9e52339b.tar.gz
rockbox-f19d6a5e1d53feedf76a7edd7756386d9e52339b.zip
Fix even more 'variable set but not used' warnings reported from GCC 4.6.0.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29819 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/rockboy/loader.c')
-rw-r--r--apps/plugins/rockboy/loader.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/plugins/rockboy/loader.c b/apps/plugins/rockboy/loader.c
index d843ba8a60..6065cf2898 100644
--- a/apps/plugins/rockboy/loader.c
+++ b/apps/plugins/rockboy/loader.c
@@ -124,7 +124,6 @@ static void initmem(void *mem, int size)
124 124
125static byte *loadfile(int fd, int *len) 125static byte *loadfile(int fd, int *len)
126{ 126{
127 int c;
128 byte *d; 127 byte *d;
129 128
130 *len=lseek(fd,0,SEEK_END); 129 *len=lseek(fd,0,SEEK_END);
@@ -136,7 +135,7 @@ static byte *loadfile(int fd, int *len)
136 } 135 }
137 lseek(fd,0,SEEK_SET); 136 lseek(fd,0,SEEK_SET);
138 137
139 c = read(fd, d, *len); 138 read(fd, d, *len);
140 139
141 return d; 140 return d;
142} 141}