From 73369069231c5b01e867e91e1840aec365acdb34 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sat, 29 Aug 2020 14:05:13 +0200 Subject: [PATCH] no printf --- client/src/cmdlfgallagher.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/cmdlfgallagher.c b/client/src/cmdlfgallagher.c index 3bd68a89d..3a717bc61 100644 --- a/client/src/cmdlfgallagher.c +++ b/client/src/cmdlfgallagher.c @@ -103,9 +103,9 @@ static int CmdGallagherDemod(const char *Cmd) { for (int i = 0, pos = 0; i < ARRAYLEN(arr); i++) { pos = (i * 8) + i; arr[i] = bytebits_to_byte(DemodBuffer + pos, 8); - printf("%d -", pos); + PrintAndLogEx(NORMAL, "%d -" NOLF, pos); } - printf("\n"); + PrintAndLogEx(NORMAL, ""); // crc uint8_t crc = bytebits_to_byte(DemodBuffer + 72, 8);