From 009a9c25aa8ba444c992ec3bf8538c466fbfb67f Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Mon, 20 May 2019 22:26:11 -0400 Subject: [PATCH] Oops (only spotted it when forcing a failure). --- test/lib/testing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lib/testing.c b/test/lib/testing.c index f787f875..5d2437f4 100644 --- a/test/lib/testing.c +++ b/test/lib/testing.c @@ -201,7 +201,7 @@ void testingprivTLogvfFull(testingT *t, const char *file, long line, const char { // TODO extract filename from file testingprivOutbufPrintf(t->outbuf, "%s:%ld: ", file, line); - testingprivOutbufPrintf(t->outbuf, format, ap); + testingprivOutbufVprintf(t->outbuf, format, ap); testingprivOutbufPrintf(t->outbuf, "\n"); }