From 0d0c42a56ee16cc36ce60ff2fabcd74c5cdb702f Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sat, 10 Oct 2020 10:45:15 +0200 Subject: [PATCH] hw tearoff - colors --- client/src/cmdhw.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/cmdhw.c b/client/src/cmdhw.c index 8676c3c3b..8045eff12 100644 --- a/client/src/cmdhw.c +++ b/client/src/cmdhw.c @@ -566,11 +566,11 @@ static int CmdTearoff(const char *Cmd) { } if (resp.status == PM3_SUCCESS) { if (params.delay_us > 0) - PrintAndLogEx(INFO, "Tear-off hook configured with delay of %ius.", params.delay_us); + PrintAndLogEx(INFO, "Tear-off hook configured with delay of " _GREEN_("%ius"), params.delay_us); if (params.on) - PrintAndLogEx(INFO, "Tear-off hook enabled."); + PrintAndLogEx(INFO, "Tear-off hook " _GREEN_("enabled")); if (params.off) - PrintAndLogEx(INFO, "Tear-off hook disabled."); + PrintAndLogEx(INFO, "Tear-off hook " _RED_("disabled")); return PM3_SUCCESS; } PrintAndLogEx(WARNING, "Tear-off command failed.");