diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-18 19:23:38 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-18 20:00:06 +0200 |
commit | 195b0c7d812811287996c3f39cbf5e9ec63da482 (patch) | |
tree | b6b0b39abc0b30c1b8819b2cf50674c77d49c69c /src/move.c | |
parent | 3d7713b5af2e1229949b31dcce74c7aba1fe042a (diff) | |
download | fwd-195b0c7d812811287996c3f39cbf5e9ec63da482.tar.gz fwd-195b0c7d812811287996c3f39cbf5e9ec63da482.zip |
use generic conts
Diffstat (limited to 'src/move.c')
-rw-r--r-- | src/move.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 <fwd/sptree.h> +#include <conts/sptree.h> 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); |