diff options
| author | 2024-06-12 21:41:35 -0400 | |
|---|---|---|
| committer | 2024-06-12 21:41:35 -0400 | |
| commit | 503b08caadb9be5b54d8542ad57973612d061cfc (patch) | |
| tree | 4d1d5ebef0f2e11dfa2532d6788f186a20c42697 /uns.c | |
| parent | strings: add more tests (diff) | |
change uns_root_ptr to uns_ctr
Diffstat (limited to '')
| -rw-r--r-- | uns.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -17,14 +17,14 @@ #include "uns.h" -void uns_root_add(struct uns_gc *gc, struct uns_root_list *root) +void uns_root_add(struct uns_gc *gc, struct uns_ctr *root) { root->prev = NULL; root->next = gc->roots; gc->roots = root; } -void uns_root_remove(struct uns_gc *gc, struct uns_root_list *root) +void uns_root_remove(struct uns_gc *gc, struct uns_ctr *root) { if (root->prev) { root->prev->next = root->next; |
