From e6b8c965bb27650b3ead5738ba46dd4c82f937de Mon Sep 17 00:00:00 2001 From: "roel@libnfc.org" Date: Mon, 5 Sep 2011 13:04:11 +0000 Subject: [PATCH] fix command-line issue generating core dump on OSX --- client/ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/ui.c b/client/ui.c index 1eb877d8..554230cb 100644 --- a/client/ui.c +++ b/client/ui.c @@ -52,7 +52,7 @@ void PrintAndLog(char *fmt, ...) va_start(argptr, fmt); va_copy(argptr2, argptr); vprintf(fmt, argptr); - vprintf(" ", 0); // cleaning prompt + printf(" "); // cleaning prompt va_end(argptr); printf("\n"); -- 2.39.2