From 195b0c7d812811287996c3f39cbf5e9ec63da482 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Tue, 18 Mar 2025 19:23:38 +0200 Subject: use generic conts --- src/move.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/move.c') diff --git a/src/move.c b/src/move.c index e11c2be..dc50cac 100644 --- a/src/move.c +++ b/src/move.c @@ -8,7 +8,7 @@ struct ast_pair { #define SPTREE_TYPE struct ast_pair #define SPTREE_CMP(a, b) ((a).def - (b).def) #define SPTREE_NAME moved -#include +#include struct state { struct moved moved; @@ -63,7 +63,9 @@ static struct rm_move remove_move(struct state *state, struct ast *def) struct ast_pair *found = moved_find(&state->moved, search); if (found) { moved_remove_found(&state->moved, found); - return (struct rm_move){.data = *found, .owner = state}; + struct rm_move r = {.data = *found, .owner = state}; + moved_free_found(&state->moved, found); + return r; } return remove_move(state->parent, def); -- cgit v1.2.3