summaryrefslogtreecommitdiffstats
path: root/apps/plugins
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-10-13 17:09:13 -0400
committerSolomon Peachy <pizza@shaftnet.org>2020-10-13 17:23:56 -0400
commit09785a8499b601abc9eac7640060c12eba962b56 (patch)
tree5ff5f1fa2e7f9927a9e45a7e1ca586bab93d7563 /apps/plugins
parentb94db707fb7a8ace5c8821ea47d85ec48ca48e26 (diff)
downloadrockbox-09785a8499b601abc9eac7640060c12eba962b56.tar.gz
rockbox-09785a8499b601abc9eac7640060c12eba962b56.zip
fix more yellow
Change-Id: I74bad58707d05ea167169d4315c05eb0cd1c8b7b
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/iriver_flash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/iriver_flash.c b/apps/plugins/iriver_flash.c
index 562a680a60..829b49b31c 100644
--- a/apps/plugins/iriver_flash.c
+++ b/apps/plugins/iriver_flash.c
@@ -460,7 +460,7 @@ void show_fatal_error(void)
int flash_bootloader(const char *filename)
{
char *bootsector;
- int pos, i, len, rc;
+ int pos, i, len/*, rc*/;
unsigned long checksum, sum;
unsigned char *p8;
uint16_t *p16;
@@ -509,7 +509,7 @@ int flash_bootloader(const char *filename)
/* Erase the bootloader flash section. */
for (i = BOOTLOADER_ENTRYPOINT/SEC_SIZE; i < 0x200; i++)
- rc = cfi_erase_sector(FB + (SEC_SIZE/2) * i);
+ /*rc =*/ cfi_erase_sector(FB + (SEC_SIZE/2) * i);
pos = BOOTLOADER_ENTRYPOINT/2;
p16 = (uint16_t *)audiobuf;