From 28aefee8fceeb8bd5ea6106eef986284583788dd Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sun, 12 Mar 2023 10:57:53 +0000 Subject: [PATCH] Galaxies: add a missing \n in a diagnostic. --- galaxies.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galaxies.c b/galaxies.c index 246438d..48c746b 100644 --- a/galaxies.c +++ b/galaxies.c @@ -2184,7 +2184,7 @@ static int solver_recurse(game_state *state, int maxdiff) struct recurse_ctx rctx; if (solver_recurse_depth >= MAXRECURSE) { - solvep(("Limiting recursion to %d, returning.", MAXRECURSE)); + solvep(("Limiting recursion to %d, returning.\n", MAXRECURSE)); return DIFF_UNFINISHED; }