From f1b15d8e076fd017390a9f87cd80d0434d2b2276 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Wed, 9 Oct 2019 14:21:09 +0200 Subject: [PATCH] coverity 226425 - 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 ee2245eb0..4a3ef9299 100644 --- a/client/emv/emvjson.c +++ b/client/emv/emvjson.c @@ -76,7 +76,7 @@ int JsonSaveJsonObject(json_t *root, const char *path, json_t *value) { if (path[0] == '$') { if (json_path_set(root, path, value, 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; } else { return 0;