aboutsummaryrefslogtreecommitdiff
path: root/src/move.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-03-18 19:23:38 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2025-03-18 20:00:06 +0200
commit195b0c7d812811287996c3f39cbf5e9ec63da482 (patch)
treeb6b0b39abc0b30c1b8819b2cf50674c77d49c69c /src/move.c
parent3d7713b5af2e1229949b31dcce74c7aba1fe042a (diff)
downloadfwd-195b0c7d812811287996c3f39cbf5e9ec63da482.tar.gz
fwd-195b0c7d812811287996c3f39cbf5e9ec63da482.zip
use generic conts
Diffstat (limited to 'src/move.c')
-rw-r--r--src/move.c6
1 files changed, 4 insertions, 2 deletions
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 <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);