aboutsummaryrefslogtreecommitdiff
path: root/teensy/teensy_list.c
diff options
context:
space:
mode:
Diffstat (limited to 'teensy/teensy_list.c')
-rw-r--r--teensy/teensy_list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/teensy/teensy_list.c b/teensy/teensy_list.c
index 342af61..76de21a 100644
--- a/teensy/teensy_list.c
+++ b/teensy/teensy_list.c
@@ -5,7 +5,7 @@
void *ty_list_create(void)
{
- struct ty_list_header *header = ty_new(struct ty_list_header);
+ ty_List_Header *header = ty_new(ty_List_Header);
header->cap = 0;
header->len = 0;
return (void*)(header + 1);