summaryrefslogtreecommitdiff
path: root/Zend/zend_llist.h
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/zend_llist.h')
-rw-r--r--Zend/zend_llist.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_llist.h b/Zend/zend_llist.h
index dd5bedb6bf..d25ff0e7b5 100644
--- a/Zend/zend_llist.h
+++ b/Zend/zend_llist.h
@@ -25,7 +25,7 @@ typedef struct _zend_llist_element {
char data[1]; /* Needs to always be last in the struct */
} zend_llist_element;
-typedef struct {
+typedef struct _zend_llist {
zend_llist_element *head;
zend_llist_element *tail;
size_t size;