From abf81bbbb7659af0d774f624ed633f7072f90c53 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Wed, 16 Oct 2019 10:42:58 +0200 Subject: [PATCH] log help as well, for consistent logging experience --- client/cmdparser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/cmdparser.c b/client/cmdparser.c index f116b5ecd..52d4e805e 100644 --- a/client/cmdparser.c +++ b/client/cmdparser.c @@ -156,7 +156,7 @@ void CmdsHelp(const command_t Commands[]) { while (Commands[i].Name) { if (Commands[i].IsAvailable()) // PrintAndLogEx(NORMAL, _GREEN_("%-16s")" %s", Commands[i].Name, Commands[i].Help); - printf(_GREEN_("%-16s")" %s\n", Commands[i].Name, Commands[i].Help); + PrintAndLogEx(NORMAL, _GREEN_("%-16s")" %s", Commands[i].Name, Commands[i].Help); ++i; } }