From 26c8f680fce5dda27368756eabacd1d6708d5b17 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Wed, 9 Oct 2019 14:14:27 +0200 Subject: [PATCH] coverity 226289 - printf --- client/emv/emvjson.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/emv/emvjson.c b/client/emv/emvjson.c index e1fd9111c..ee2245eb0 100644 --- a/client/emv/emvjson.c +++ b/client/emv/emvjson.c @@ -157,7 +157,7 @@ int JsonSaveTLVElm(json_t *elm, const char *path, struct tlv *tlvelm, bool saveN } } else { if (json_path_set(elm, path, obj, 0, &error)) { - PrintAndLogEx(ERR, "ERROR: can't set json path: ", error.text); + PrintAndLogEx(ERR, "ERROR: can't set json path: %s", error.text); return 2; } }