mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
modules: fix typo in module-rtkit
Was using the gettid() function directly instead of the _gettid() wrapper.
This commit is contained in:
parent
41ce309275
commit
9160a127b5
1 changed files with 1 additions and 1 deletions
|
|
@ -518,7 +518,7 @@ static void *custom_start(void *data)
|
|||
struct impl *impl = this->impl;
|
||||
|
||||
pthread_mutex_lock(&impl->lock);
|
||||
this->pid = gettid();
|
||||
this->pid = _gettid();
|
||||
pthread_cond_broadcast(&impl->cond);
|
||||
pthread_mutex_unlock(&impl->lock);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue