mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-20 13:23:25 -07:00
fix clang compiler warnings (including fixing a bug revealed in cmdhftopaz.c)
This commit is contained in:
parent
8aee1b8418
commit
31a29271b9
5 changed files with 7 additions and 7 deletions
|
@ -337,7 +337,7 @@ static void topaz_print_control_TLVs(uint8_t *memory)
|
|||
if (TLV_type == 0x02) { // a Reserved Memory Control TLV
|
||||
uint8_t pages_addr = TLV_value[0] >> 4;
|
||||
uint8_t byte_offset = TLV_value[0] & 0x0f;
|
||||
uint8_t size_in_bytes = TLV_value[1] ? TLV_value[1] : 256;
|
||||
uint16_t size_in_bytes = TLV_value[1] ? TLV_value[1] : 256;
|
||||
uint8_t bytes_per_page = 1 << (TLV_value[2] & 0x0f);
|
||||
uint16_t area_start = pages_addr * bytes_per_page + byte_offset;
|
||||
PrintAndLog("Reserved Memory of %d bytes at byte offset 0x%02x.",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue