aboutsummaryrefslogtreecommitdiff
path: root/src/linked_list.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/linked_list.h4
1 files changed, 2 insertions, 2 deletions
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.