diff options
author | Timothy Arceri <tarceri@itsqueeze.com> | 2019-10-28 09:49:39 +1100 |
---|---|---|
committer | Timothy Arceri <tarceri@itsqueeze.com> | 2019-10-28 11:24:38 +0000 |
commit | 7ae1be102877c2623d16ff72a2ef198de6c301fe (patch) | |
tree | eaaea8484ea30be97dd6a4c62b186dfc8b583a5a /src/util/u_queue.c | |
parent | 15e7f942787eda5dbf94ec2e03fe3074e3e11fd4 (diff) | |
download | external_mesa3d-7ae1be102877c2623d16ff72a2ef198de6c301fe.tar.gz external_mesa3d-7ae1be102877c2623d16ff72a2ef198de6c301fe.tar.bz2 external_mesa3d-7ae1be102877c2623d16ff72a2ef198de6c301fe.zip |
util: remove LIST_INITHEAD macro
Just use the inlined function directly. The macro was replaced with
the function in ebe304fa540f.
Reviewed-by: Eric Engestrom <eric@engestrom.ch>
Diffstat (limited to 'src/util/u_queue.c')
-rw-r--r-- | src/util/u_queue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/u_queue.c b/src/util/u_queue.c index 47b8dcd407c..3a7fe4ab801 100644 --- a/src/util/u_queue.c +++ b/src/util/u_queue.c @@ -67,7 +67,7 @@ atexit_handler(void) static void global_init(void) { - LIST_INITHEAD(&queue_list); + list_inithead(&queue_list); atexit(atexit_handler); } |