mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-21 08:56:56 -05:00
warn about and fix some -Wpointer-sign warnings
This commit is contained in:
parent
92c541ea03
commit
94dbd4f9b8
3 changed files with 5 additions and 4 deletions
|
|
@ -471,7 +471,7 @@ static uint32_t collect_port_info(struct pw_manager_object *card, struct card_in
|
|||
|
||||
spa_pod_parser_pod(&prs, pi->info);
|
||||
if (spa_pod_parser_push_struct(&prs, &f[0]) < 0 ||
|
||||
spa_pod_parser_get_int(&prs, &pi->n_props) < 0)
|
||||
spa_pod_parser_get_int(&prs, (int32_t*)&pi->n_props) < 0)
|
||||
break;
|
||||
|
||||
for (n = 0; n < pi->n_props; n++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue