From abd82025f6a6d7d335e8f7b98b47f8a9b179d0d1 Mon Sep 17 00:00:00 2001 From: Willem Toorop Date: Sun, 3 Nov 2013 16:05:10 -0800 Subject: [PATCH] Remove typedef from list.h --- src/list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/list.h b/src/list.h index e3be1879..a3c3cd58 100644 --- a/src/list.h +++ b/src/list.h @@ -57,7 +57,7 @@ struct getdns_list_item { * The use cases do not justify working too hard at shrinking the structures. * Indexes are 0 based. */ -typedef struct getdns_list { +struct getdns_list { int numalloc; int numinuse; struct getdns_list_item *items;