From b9cac45eba9c803181a1d9868efdb08c93668d43 Mon Sep 17 00:00:00 2001 From: jlamothe Date: Wed, 15 Nov 2023 00:04:35 +0000 Subject: [PATCH] report function should ignore formatting --- 9unit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/9unit.c b/9unit.c index e75d7ba..d9b2da6 100644 --- a/9unit.c +++ b/9unit.c @@ -166,7 +166,7 @@ reindex(TestState *s) static void report(const char *str) { - print(str); + print("%s", str); } //jl