diff options
| author | Dien-Nhung Nguyen-Phu <kein@kienlab.com> | 2024-06-23 17:56:43 +0700 |
|---|---|---|
| committer | Dien-Nhung Nguyen-Phu <kein@kienlab.com> | 2024-06-23 17:56:43 +0700 |
| commit | af1ffccd011238992b17f3957107bdbc92541eda (patch) | |
| tree | eedb7ad1e5e100a3887fcd05ef9e5f620e4ed61a /src/fb.c | |
| parent | 3e9252f426e7cb1820be447f4d9ab3927cd479c1 (diff) | |
fix: fb linked list misplaced
Diffstat (limited to 'src/fb.c')
| -rw-r--r-- | src/fb.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |