From 1c8194a84fcba837661b27c8af6bdd3b58178ebc Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Fri, 16 Oct 2020 17:13:05 +0200 Subject: [PATCH] fix coverity --- client/src/scripting.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/scripting.c b/client/src/scripting.c index 17362e5f6..e603ce359 100644 --- a/client/src/scripting.c +++ b/client/src/scripting.c @@ -1171,7 +1171,7 @@ static int l_em4x50_read(lua_State *L) { PrintAndLogEx(DEBUG, "Addr %u", etd.address); if (etd.pwd_given) - PrintAndLogEx(DEBUG, " Pwd %08X", etd.password); + PrintAndLogEx(DEBUG, " Pwd %s", sprint_hex(etd.password, sizeof(etd.password))); em4x50_word_t words[EM4X50_NO_WORDS];