From af1ffccd011238992b17f3957107bdbc92541eda Mon Sep 17 00:00:00 2001 From: Dien-Nhung Nguyen-Phu Date: Sun, 23 Jun 2024 17:56:43 +0700 Subject: fix: fb linked list misplaced --- src/fb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fb.c b/src/fb.c index 7e5bf1f..08ae20c 100644 --- a/src/fb.c +++ b/src/fb.c @@ -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; } -- cgit v1.2.3