From bb561ee3b18be69e52b17cedde50eac96ea409da Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Thu, 20 Apr 2023 13:35:58 +0100 Subject: Use a dedicated free function to free dsfs. No functional change: currently, this just wraps the previous sfree call. --- dominosa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dominosa.c') diff --git a/dominosa.c b/dominosa.c index 7a87e4b..8835bbb 100644 --- a/dominosa.c +++ b/dominosa.c @@ -510,7 +510,7 @@ static void solver_free_scratch(struct solver_scratch *sc) sfree(sc->pc_scratch); sfree(sc->pc_scratch2); sfree(sc->dc_scratch); - sfree(sc->dsf_scratch); + dsf_free(sc->dsf_scratch); sfree(sc); } -- cgit v1.1