Fix few zelaous WARNING->ERR

This commit is contained in:
Philippe Teuwen 2019-07-14 12:17:34 +02:00
commit 55602bf833
13 changed files with 31 additions and 31 deletions

View file

@ -667,7 +667,7 @@ static int CmdBiphaseDecodeRaw(const char *Cmd) {
}
if (errCnt > 0)
PrintAndLogEx(ERR, "# Errors found during Demod (shown as " _YELLOW_("7")" in bit stream): %d", errCnt);
PrintAndLogEx(WARNING, "# Errors found during Demod (shown as " _YELLOW_("7")" in bit stream): %d", errCnt);
PrintAndLogEx(NORMAL, "Biphase Decoded using offset: %d - # invert:%d - data:", offset, invert);
PrintAndLogEx(NORMAL, "%s", sprint_bin_break(bits, size, 32));