This commit is contained in:
Pietro Gagliardi 2018-03-03 21:32:18 -05:00
parent dcf6726239
commit 3337f06e2e
1 changed files with 2 additions and 2 deletions

View File

@ -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;
};