mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 13:00:42 -07:00
fix; stupid fixes for some compiler warnings messages of unused variables..
This commit is contained in:
parent
0ad1a1d492
commit
2495281d14
2 changed files with 9 additions and 3 deletions
|
@ -271,7 +271,7 @@ int RunModel(char *inModel, char *inHexStr, bool reverse, char endian, char *res
|
||||||
int ibperhx = 8, obperhx = 8;
|
int ibperhx = 8, obperhx = 8;
|
||||||
int rflags = 0; // search flags
|
int rflags = 0; // search flags
|
||||||
int c;
|
int c;
|
||||||
unsigned long width = 0UL;
|
unsigned long width;
|
||||||
poly_t apoly, crc;
|
poly_t apoly, crc;
|
||||||
|
|
||||||
char *string;
|
char *string;
|
||||||
|
|
|
@ -349,10 +349,16 @@ int CmdHFTopazReader(const char *Cmd)
|
||||||
|
|
||||||
PrintAndLog("");
|
PrintAndLog("");
|
||||||
bool lock_TLV_present = topaz_print_lock_control_TLVs(&topaz_tag.data_blocks[1][4]);
|
bool lock_TLV_present = topaz_print_lock_control_TLVs(&topaz_tag.data_blocks[1][4]);
|
||||||
|
if ( lock_TLV_present ) {
|
||||||
|
PrintAndLog("");
|
||||||
|
}
|
||||||
|
|
||||||
PrintAndLog("");
|
PrintAndLog("");
|
||||||
bool reserved_mem_present = topaz_print_reserved_memory_control_TLVs(&topaz_tag.data_blocks[1][4]);
|
bool reserved_mem_present = topaz_print_reserved_memory_control_TLVs(&topaz_tag.data_blocks[1][4]);
|
||||||
|
if (reserved_mem_present) {
|
||||||
|
PrintAndLog("");
|
||||||
|
}
|
||||||
|
|
||||||
topaz_print_lifecycle_state(&topaz_tag.data_blocks[1][0]);
|
topaz_print_lifecycle_state(&topaz_tag.data_blocks[1][0]);
|
||||||
|
|
||||||
topaz_print_NDEF(&topaz_tag.data_blocks[1][0]);
|
topaz_print_NDEF(&topaz_tag.data_blocks[1][0]);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue