From 7921e363b0968fa99200ada6fb610b0ef3aa3768 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sun, 10 Mar 2019 14:42:43 +0100 Subject: [PATCH] output --- client/cmdlf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/cmdlf.c b/client/cmdlf.c index f93fe27c5..1b0d6be9d 100644 --- a/client/cmdlf.c +++ b/client/cmdlf.c @@ -215,7 +215,7 @@ int CmdFlexdemod(const char *Cmd) { } if (start == size - LONG_WAIT) { - PrintAndLogEx(NORMAL, "nothing to wait for"); + PrintAndLogEx(WARNING, "nothing to wait for"); return 0; } @@ -239,9 +239,9 @@ int CmdFlexdemod(const char *Cmd) { for (j = 0; j < 16; j++) sum += data[i++]; - if (sum > 0 && bits[bit] != 1) PrintAndLogEx(NORMAL, "oops1 at %d", bit); + if (sum > 0 && bits[bit] != 1) PrintAndLogEx(WARNING, "oops1 at %d", bit); - if (sum < 0 && bits[bit] != 0) PrintAndLogEx(NORMAL, "oops2 at %d", bit); + if (sum < 0 && bits[bit] != 0) PrintAndLogEx(WARNING, "oops2 at %d", bit); }