]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
CHG: unused variables and remove of compiler warnings.
authoriceman1001 <iceman@iuse.se>
Mon, 16 Jan 2017 14:00:40 +0000 (15:00 +0100)
committericeman1001 <iceman@iuse.se>
Mon, 16 Jan 2017 14:00:40 +0000 (15:00 +0100)
client/cmdhficlass.c
common/protocols.c

index c4f727096f2581b4382efb5a62e88372c9120e1b..273d24aea5fa5cadd4efff65fae9099952a0ef7e 100644 (file)
@@ -880,7 +880,7 @@ int CmdHFiClassReader_Dump(const char *Cmd) {
        if (have_debit_key) memcpy(tag_data+(3*8),div_key,8);
        if (have_credit_key) memcpy(tag_data+(4*8),c_div_key,8);
        
-       printf("Num of bytes:  %u\n", gotBytes);
+       printf("Num of bytes:  %d\n", gotBytes);
        
        // print the dump
        printf("------+--+-------------------------+\n");
index 29ae24a76326670fffc9f4e6ecd6a4c1840c4341..420d575ad108ae7a64069f73d617cca467cb4aba 100644 (file)
@@ -60,7 +60,7 @@ void fuse_config(const picopass_hdr *hdr) {
 void getMemConfig(uint8_t mem_cfg, uint8_t chip_cfg, uint8_t *max_blk, uint8_t *app_areas, uint8_t *kb) {
        // mem-bit 5, mem-bit 7, chip-bit 4: defines chip type
        uint8_t k16             = isset(mem_cfg, 0x80);
-       uint8_t k2              = isset(mem_cfg, 0x08);
+       //uint8_t k2            = isset(mem_cfg, 0x08);
        uint8_t book    = isset(mem_cfg, 0x20);
        
        if(isset(chip_cfg, 0x10) && !k16 && !book) {
Impressum, Datenschutz