From 0dedfe9ee8e5b3a916ec6a6ddd8cfe6c53488113 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Mon, 1 Jan 2024 10:07:49 +0100 Subject: [PATCH] missing some old output for NVX running on proxspace/mingw. Might need even more spaces for all escape codes. the best would be a escape code to clear the line --- client/src/proxmark3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/proxmark3.c b/client/src/proxmark3.c index 3492a4ac1..a41805b18 100644 --- a/client/src/proxmark3.c +++ b/client/src/proxmark3.c @@ -134,7 +134,7 @@ static void prompt_compose(char *buf, size_t buflen, const char *promptctx, cons snprintf(buf, buflen - 1, PROXPROMPT_COMPOSE, promptdev, promptnet, promptctx); } else { - snprintf(buf, buflen - 1, "\r \r" PROXPROMPT_COMPOSE, promptdev, promptnet, promptctx); + snprintf(buf, buflen - 1, "\r \r" PROXPROMPT_COMPOSE, promptdev, promptnet, promptctx); } }