From 1772cf8bdd474f64c8d3c4d306150c2bebbf757e Mon Sep 17 00:00:00 2001 From: Iceman Date: Mon, 26 Dec 2016 20:43:20 +0100 Subject: [PATCH] fixed warning about size_t CHG: warning needs %lu string formatter --- client/cmdhficlass.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/cmdhficlass.c b/client/cmdhficlass.c index 156b7f65..1caeebb8 100644 --- a/client/cmdhficlass.c +++ b/client/cmdhficlass.c @@ -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"); -- 2.39.2