From 03a7109efde85634e6f8834762d84d801e1d788a Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Wed, 19 May 2021 10:20:30 +0200 Subject: [PATCH] fix coverity CID 321717 --- client/src/wiegand_formats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/wiegand_formats.c b/client/src/wiegand_formats.c index 0daf1dd5d..75f9ea987 100644 --- a/client/src/wiegand_formats.c +++ b/client/src/wiegand_formats.c @@ -1383,7 +1383,7 @@ void HIDListFormats(void) { ++i; } PrintAndLogEx(INFO, "------------------------------------------------------------"); - PrintAndLogEx(INFO, "Available card formats: " _YELLOW_("%" PRIu32), ARRAYLEN(FormatTable)); + PrintAndLogEx(INFO, "Available card formats: " _YELLOW_("%" PRIu64), ARRAYLEN(FormatTable)); PrintAndLogEx(NORMAL, ""); return; }