aboutsummaryrefslogtreecommitdiff
path: root/unfinished/separate.c
diff options
context:
space:
mode:
Diffstat (limited to 'unfinished/separate.c')
-rw-r--r--unfinished/separate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unfinished/separate.c b/unfinished/separate.c
index 9ed1cac..b064f18 100644
--- a/unfinished/separate.c
+++ b/unfinished/separate.c
@@ -239,7 +239,7 @@ static struct solver_scratch *solver_scratch_new(int w, int h, int k)
static void solver_scratch_free(struct solver_scratch *sc)
{
- sfree(sc->dsf);
+ dsf_free(sc->dsf);
sfree(sc->size);
sfree(sc->contents);
sfree(sc->disconnect);
@@ -615,7 +615,7 @@ static unsigned char *generate(int w, int h, int k, random_state *rs)
retries = k*k; /* reset this counter, and continue */
}
- sfree(dsf);
+ dsf_free(dsf);
} while (m == 0);
sfree(gen_lock);