mirror of
https://github.com/mpv-player/mpv
synced 2024-12-18 04:45:33 +00:00
Fix gcc 4.7 warning about shadowing talloc_parent in mp_dispact_queue
This commit is contained in:
parent
696733d077
commit
f289060259
@ -66,9 +66,9 @@ static void queue_dtor(void *p)
|
||||
// The target thread is the thread which created the queue and which calls
|
||||
// mp_dispatch_queue_process().
|
||||
// Free the dispatch queue with talloc_free(). (It must be empty.)
|
||||
struct mp_dispatch_queue *mp_dispatch_create(void *talloc_parent)
|
||||
struct mp_dispatch_queue *mp_dispatch_create(void *ta_parent)
|
||||
{
|
||||
struct mp_dispatch_queue *queue = talloc_ptrtype(talloc_parent, queue);
|
||||
struct mp_dispatch_queue *queue = talloc_ptrtype(ta_parent, queue);
|
||||
*queue = (struct mp_dispatch_queue){0};
|
||||
talloc_set_destructor(queue, queue_dtor);
|
||||
pthread_mutex_init(&queue->exclusive_lock, NULL);
|
||||
|
Loading…
Reference in New Issue
Block a user