aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/litmus/heap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/litmus/heap.h b/include/litmus/heap.h
index b26804f879..0b0ede4542 100644
--- a/include/litmus/heap.h
+++ b/include/litmus/heap.h
@@ -31,7 +31,7 @@ typedef int (*heap_prio_t)(struct heap_node* a, struct heap_node* b);
31static inline void heap_init(struct heap* heap) 31static inline void heap_init(struct heap* heap)
32{ 32{
33 heap->head = NULL; 33 heap->head = NULL;
34 heap->head = NULL; 34 heap->min = NULL;
35} 35}
36 36
37static inline void heap_node_init(struct heap_node** _h, void* value) 37static inline void heap_node_init(struct heap_node** _h, void* value)