From 2dbf9aed304c69431038d3b37e614e5d45dbcc56 Mon Sep 17 00:00:00 2001 From: Jesper Jensen Date: Sat, 18 Apr 2026 16:14:51 +0200 Subject: Make the triangle work again --- src/debug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/debug.c') diff --git a/src/debug.c b/src/debug.c index 6027ed4..92540fc 100644 --- a/src/debug.c +++ b/src/debug.c @@ -30,11 +30,11 @@ void print_subassemblies(struct constraints *c, struct subassembly *assemblies, component_type_name[ct->c2->type], (void*)ct->c2); } } - fprintf(stderr, " Unused constraints:\n"); + fprintf(stderr, "Unused constraints:\n"); for(size_t j = 0; j < c->length; j++) { struct constraint *ct = &c->elements[j]; if(ct->used != 0) continue; - fprintf(stderr, " [%zu] %s v=%.2f (%s %p, %s %p)\n", + fprintf(stderr, " [%zu] %s v=%.2f (%s %p, %s %p)\n", j, constraint_type_name[ct->type], ct->v, component_type_name[ct->c1->type], (void*)ct->c1, component_type_name[ct->c2->type], (void*)ct->c2); -- cgit v1.2.3