fix: fb linked list misplaced

This commit is contained in:
Dien-Nhung Nguyen-Phu
2024-06-23 17:56:43 +07:00
parent 3e9252f426
commit af1ffccd01

View File

@@ -19,7 +19,7 @@ fb_t *fblist_insert(fb_t *at, fb_t *new)
fb_t *fblist_append(fb_t *new)
{
fblist_insert(new, tail);
fblist_insert(tail, new);
tail = new;
return new;
}