diff options
Diffstat (limited to 'apps')
-rw-r--r-- | apps/debug_menu.c | 7 | ||||
-rw-r--r-- | apps/plugins/iriver_flash.c | 4 |
2 files changed, 7 insertions, 4 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index 44e56cdd02..7187e8135c 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -1521,13 +1521,16 @@ static int ata_smart_attr_to_string( break; case RAWFMT_RAW48: - default: + default: { + uint32_t tmp; + memcpy(&tmp, w, sizeof(tmp)); /* shows first 4 bytes of raw data as uint32 LE, and the ramaining 2 bytes as uint16 LE */ - len += snprintf(buf+len, size-len, "%lu", letoh32(*((uint32_t*)w))); + len += snprintf(buf+len, size-len, "%lu", letoh32(tmp)); if (w[2] && (len < size)) len += snprintf(buf+len, size-len, " %u", w[2]); break; + } } /* ignore trailing \0 when truncated */ if (len >= size) len = size-1; 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; |