forked from len0rd/rockbox
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
This commit is contained in:
parent
08fb3f6574
commit
f7c4594134
17 changed files with 344 additions and 355 deletions
|
|
@ -321,7 +321,6 @@ void cb_saveposition ( void ) {
|
|||
/* ---- Restore saved position ---- */
|
||||
void cb_restoreposition ( void ) {
|
||||
int fd;
|
||||
int c;
|
||||
short sq;
|
||||
unsigned short m;
|
||||
|
||||
|
|
@ -357,7 +356,7 @@ void cb_restoreposition ( void ) {
|
|||
else
|
||||
--color[sq];
|
||||
}
|
||||
GameCnt = -1; c = '?';
|
||||
GameCnt = -1;
|
||||
while (rb->read(fd, &(GameList[++GameCnt].gmove),
|
||||
sizeof(GameList[GameCnt].gmove)) > 0) {
|
||||
rb->read(fd, &(GameList[GameCnt].score),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue