From c1f53f42900b20d331e6d63d449dd85a10e4f036 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 15 Jun 2026 10:19:38 -0400 Subject: Fix missing LF --- tests/test_version_compare.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_version_compare.c b/tests/test_version_compare.c index 2a3458f..1502b38 100644 --- a/tests/test_version_compare.c +++ b/tests/test_version_compare.c @@ -147,7 +147,7 @@ void run_cases_version_compare(void) { result = version_compare(op, test->a, test->b); STASIS_ASSERT(test->expected == result, "unexpected result"); - fprintf(stderr, "'%s' '%s' '%s' is %s (%d)", + fprintf(stderr, "'%s' '%s' '%s' is %s (%d)\n", test->a ? test->a : "NULL", test->op ? test->op : "NULL", test->b ? test->b : "NULL", -- cgit