diff --git a/core/container/intrusive/list/intrusive_list.odin b/core/container/intrusive/list/intrusive_list.odin index 88e21edc5..d2df4475b 100644 --- a/core/container/intrusive/list/intrusive_list.odin +++ b/core/container/intrusive/list/intrusive_list.odin @@ -20,7 +20,7 @@ List :: struct { Node :: struct { - next, prev: ^Node, + prev, next: ^Node, } push_front :: proc(list: ^List, node: ^Node) {