summaryrefslogtreecommitdiffstats
path: root/c2.h
diff options
context:
space:
mode:
Diffstat (limited to 'c2.h')
-rw-r--r--c2.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/c2.h b/c2.h
index c794da1c0..b26a687de 100644
--- a/c2.h
+++ b/c2.h
@@ -156,12 +156,14 @@ const static c2_l_t leaf_def = C2_L_INIT;
/// Linked list type of conditions.
struct _c2_lptr {
c2_ptr_t ptr;
+ void *data;
struct _c2_lptr *next;
};
/// Initializer for c2_lptr_t.
#define C2_LPTR_INIT { \
.ptr = C2_PTR_INIT, \
+ .data = NULL, \
.next = NULL, \
}