mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
fix some signed vs unsigned comparisons
This commit is contained in:
parent
5f92c152e3
commit
6f61ac9357
10 changed files with 49 additions and 44 deletions
|
|
@ -378,7 +378,8 @@ static void *loop(void *user_data)
|
|||
|
||||
printf("enter thread %d\n", data->n_sources);
|
||||
while (data->running) {
|
||||
int i, r;
|
||||
uint32_t i;
|
||||
int r;
|
||||
|
||||
/* rebuild */
|
||||
if (data->rebuild_fds) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue