From 1e98c4621d5ea2ee97dcb2247b6c62fbdb2bdc91 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Mon, 18 Feb 2019 16:30:57 +0100 Subject: [PATCH] chg: colors --- client/loclass/fileutils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/loclass/fileutils.c b/client/loclass/fileutils.c index 0751f838b..6078ec4f9 100644 --- a/client/loclass/fileutils.c +++ b/client/loclass/fileutils.c @@ -245,7 +245,7 @@ int saveFileJSON(const char *preferredName, const char *suffix, JSONFileType fty retval = 200; goto out; } - PrintAndLogDevice(SUCCESS, "File `" _YELLOW_(%s)"` saved.", fileName); + PrintAndLogDevice(SUCCESS, "Save to json file " _YELLOW_(%s), fileName); json_decref(root); out: @@ -445,7 +445,7 @@ int loadFileJSON(const char *preferredName, const char *suffix, void* data, size } - PrintAndLog("Loaded JSON: " _YELLOW_(%s) " OK.", fileName); + PrintAndLog("loaded from JSON file " _YELLOW_(%s), fileName); out: json_decref(root); free(fileName);