]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
fixed warning about size_t
authorIceman <iceman@iuse.se>
Mon, 26 Dec 2016 19:43:20 +0000 (20:43 +0100)
committerGitHub <noreply@github.com>
Mon, 26 Dec 2016 19:43:20 +0000 (20:43 +0100)
CHG:  warning needs %lu string formatter

client/cmdhficlass.c

index 156b7f651b664e7854f7806324df61e1a1a1a198..1caeebb8d3d4219b8d6ece2b858a887385b3be5c 100644 (file)
@@ -769,7 +769,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:  %lu\n", gotBytes);
        
        // print the dump
        printf("------+--+-------------------------+\n");
Impressum, Datenschutz