summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2023-10-16 12:23:38 -0500
committersanine <sanine.not@pm.me>2023-10-16 12:23:38 -0500
commit74de130540b6c139312ce1ed70a59c6bdd4d10dc (patch)
treeba83c530f72bb909642e38e7d49b133ec81f8875
parent251c24e3b6df56b903c4de60b4a8884288f613e4 (diff)
add more message padding
-rw-r--r--lily-test.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lily-test.h b/lily-test.h
index 80ba054..3ab4507 100644
--- a/lily-test.h
+++ b/lily-test.h
@@ -285,7 +285,7 @@ void lily_run_test(void (*test)())
printf("test \"%s\" failed!\n", lily_g.test_name);
lily_test_msg_t *n = lily_g.HEAD.next;
while(n != NULL) {
- printf(" %s\n [%s]\n", n->msg, n->location);
+ printf(" %s\n [%s]\n\n", n->msg, n->location);
n = n->next;
}
lily_msg_destroy(lily_g.HEAD.next);