From 3337f06e2e6b147daa949acfa7eb649d833f12a8 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sat, 3 Mar 2018 21:32:18 -0500 Subject: [PATCH] Oops. --- common/attrlist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/attrlist.c b/common/attrlist.c index 4fdb86f8..7a85aff9 100644 --- a/common/attrlist.c +++ b/common/attrlist.c @@ -13,7 +13,7 @@ The linked list is not a ring; alist->fist->prev == NULL and alist->last->next = TODO verify that this disallows attributes of length zero */ -struct uiprivAttrList { +struct attr { uiAttribute *val; size_t start; size_t end; @@ -21,7 +21,7 @@ struct uiprivAttrList { struct attr *next; }; -uiprivAttrList { +struct uiprivAttrList { struct attr *first; struct attr *last; };