util: remove LIST_ADD macro

Just use the inlined function directly. The macro was replaced with
the function in ebe304fa54.

Reviewed-by: Eric Engestrom <eric@engestrom.ch>
This commit is contained in:
Timothy Arceri
2019-10-28 10:03:21 +11:00
parent 255de06c59
commit 40258fb8b8
12 changed files with 24 additions and 25 deletions

View File

@@ -1036,7 +1036,7 @@ st_framebuffer_reuse_or_create(struct st_context *st,
}
/* add to the context's winsys buffers list */
LIST_ADD(&cur->head, &st->winsys_buffers);
list_add(&cur->head, &st->winsys_buffers);
st_framebuffer_reference(&stfb, cur);
}