From 22202ef5bb15c55d484cf50d0b39470dbb57cf26 Mon Sep 17 00:00:00 2001 From: Mikkel Thestrup Date: Thu, 11 Dec 2025 11:04:06 +0100 Subject: oops --- src/linked_list.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/linked_list.h') diff --git a/src/linked_list.h b/src/linked_list.h index be5f6ab..92db8f8 100644 --- a/src/linked_list.h +++ b/src/linked_list.h @@ -19,13 +19,13 @@ typedef struct LinkedListNode { * @brief Pointer to the next node in the list. * @details NULL if this is the last node. */ - LinkedListNode *next; + struct LinkedListNode *next; /** * @brief Pointer to the previous node in the list. * @details NULL if this is the first node (head). */ - LinkedListNode *prev; + struct LinkedListNode *prev; /** * @brief Generic pointer to the node's data. -- cgit v1.2.3-70-g09d2