aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Thestrup <mithe24@student.sdu.dk>2025-12-11 11:04:06 +0100
committerMikkel Thestrup <mithe24@student.sdu.dk>2025-12-11 11:04:06 +0100
commit22202ef5bb15c55d484cf50d0b39470dbb57cf26 (patch)
tree89e9cb015bdd4268b9bbcd5a35738455661119f8
parent8f512a36a5687b806e27775480878dded7a028ef (diff)
downloadcycle-detector-22202ef5bb15c55d484cf50d0b39470dbb57cf26.tar.gz
cycle-detector-22202ef5bb15c55d484cf50d0b39470dbb57cf26.zip
oops
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.